chechbox 的設定在 jquery 1.6 以後要用以下的方式來設定,否則會有意想不到的奇怪事情發生。
$(this).prop("checked", true);
$(this).prop("checked", false);
以前我都使用以下的方式來操作,但是 1.6 以後以下的做法被取消了。
$(this).attr("checked", "checked");
$(this).removeAttr("checked");
用來記錄些程式開發時會用到的知識
$(this).prop("checked", true);
$(this).prop("checked", false);
$(this).attr("checked", "checked");
$(this).removeAttr("checked");