阅读背景:

如何在未选中特定复选框按钮时不显示div区域?

来源:互联网 

$(document).ready(function(){
  $(".registration_info input").click(function(){
    if($(this).prop("checked")){
      $(".registration_info input:checkbox").prop("checked", false);
      $(this).prop("checked", true);
    }
  });
});

// -------- dealer area --------

$(document).ready(function(){
  $("#area").click(function(){
    if($(this).is(":checked")){
      $("#some_area").show();
    }
    else
      $("#some_area").hide();
  });
});$(document).ready(function(){
  $("



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: