JQuery   Checkbox的change事件  

 参考 http://blog.csdn.net/hbhgjiangkun/article/details/8126981
 

$(function(){
    $("#ischange").change(function() {
        alert("checked");
    });
}); 
 
上面的代码没作用
修改为下面即可
$(function(){
 if ($.browser.msie) {
  $('input:checkbox').click(function () { 
   this.blur();   
   this.focus(); 
  });   
 };
 $("#ischange").change(function() {
 alert("checked");
 });
}); 

相关文章:

  • 2021-12-07
  • 2021-11-24
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-16
  • 2022-01-27
相关资源
相似解决方案