常见方法有:
$("#ischange").change(function() { alert("checked"); });
$(function(){ if ($.browser.msie) { $('input:checkbox').click(function () { this.blur(); this.focus(); }); };
$("#ischange").change(function() { alert("checked"); });
$(function () { if ($.browser.msie) { $('input:checkbox').click(function () { this.blur(); this.focus(); }); } });
$(document).ready(function(){ $("testCheckbox").change(function() { alert("Option changed!"); }); });