Possible Duplicate:
disable form submit until (two) checkboxes are checked




标记按钮“我接受隐私政策”以提交表格应该是强制性的。

<form id="form" action="">
  <label for="accept">Accept Policy Privacy</label>
  <input id="accept" type="checkbox" >
  <input type="submit" id="Send" value="Send" >
</form>


谢谢

最佳答案

$(function(){
  $('input#send', this).attr('disabled', 'disabled');
  $('input#accept').click(function(){
    var disabled=$('input#send').attr('disabled');
    if(disabled) {
      $('input#send').attr('disabled', false);
    }else{
      $('input#send').attr('disabled', 'disabled');
    }
  });
});


您必须先搜索,stackoverflow中也有类似的问题

disable form submit until (two) checkboxes are checked

关于jquery - 接受政策隐私权,然后使用jQuery启用表单提交,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14303202/

10-14 04:30