當我運行以下自包含代碼時,該複選框被選中並取消選中一次,但之後即使這些消息似乎並不意味着切換。爲什麼jQuery沒有檢查/取消選中複選框
<html>
<head>
<title>dummy</title>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<input id="fc" type="checkbox" />
<script>
function f() {
if (typeof $("#fc").attr("checked") !== 'undefined') {
alert("checked, unchecking");
$("#fc").removeAttr("checked");
} else {
alert("unchecked, checking");
$("#fc").attr("checked", "checked");
}
setTimeout(f, 1000);
}
setTimeout(f, 1000);
</script>
</body>
</html>
在Firefox中測試過,它似乎第一次工作,但它只是呈現爲未選中狀態。 –
正確,在Chrome和Firefox中同樣適用於我 – necromancer