這對我
<input type="checkbox" id="chkMain" /><br
<input class="child" type="checkbox" id="chk1" disabled="true" />
<input class="child" type="checkbox" id="chk2" disabled="true" />
<input class="child" type="checkbox" id="chk3" disabled="true" />
<input class="child" type="checkbox" id="chk4" disabled="true" />
<input class="child" type="checkbox" id="chk5" disabled="true" />
$(function(){
$("#chkMain").click (function() {
if (!$(this).is (":checked"))
{
$(".child").attr ("disabled" , true);
}
else
{
$(".child").removeAttr ("disabled");
}
});
});
Working Demo
工作正常,如果您可以張貼HTML還那麼這將是更有幫助。
非常感謝!這正是我正在尋找的... – Shruti 2009-10-30 06:34:25