我在代碼中看不到任何錯誤。但是,當複選框打勾時,Alertbox不顯示。當勾選複選框時,alertBox不顯示
有沒有人可以幫助我?提前致謝。
<script type="text/javascript" language="javascript" src="jquery/jquery-1.4.4.min.js"></script>
<script type="text/javascript" language="javascript">
$(function(){
if($("#checkkBoxId").attr("checked"))
{
alert("Checked");
}
else
{
alert("Unchecked");
}
});
</script>
</head>
<body>
<p><input id="checkkBoxId" type="checkbox">Enable</p>
</body>
你真的需要使用jQuery的一個古老的版本? 1.6.4是最近的版本,在這個版本中你可以使用'.prop()',這對於獲取檢查狀態更快更舒適。 – ThiefMaster