이것은 북마크된 꽤 좋은 방법입니다.
다음 기능은 위 기능을 보완한 것입니다.
HTML에서는 체크박스가 선택되어 있으면 누구나 알 수 있습니다. 확인되었습니다 = "확인됨".
하지만 jquery Alert($("#id").attr("checked"))를 사용하면 확인 대신 true라는 메시지가 표시됩니다.
너무 많은 친구들이 if($("# id").attr("checked")=="true") 이것은 잘못된 것입니다. 실제로는 if($("#id").attr("checked")==true)
예제에는 몇 가지 기능이 포함되어 있습니다.
HTML>
새 문서
/************단일 확인란에서 모두 선택*************************/
function clickCheckbox() {
if($("#checkPathAll").attr("checked"))
{
$("input[name='checkPath']").each( function() {
$(this).attr("checked", true)
});
}
else
{
$("input[name='checkPath']").each(function() {
$(this).attr("checked", false )
});
}
}