在用到複選框的時候,想在js中判斷chekbox是否被選中jquery
<input name="isPermit" id="isPermit" type="checkbox">
百度了不少的判斷方法測試
一、code
if($("#isPermit").attr("checked")=="checked")
二、input
if($("#isPermit").attr("checked")==true)
三、it
if($("#isPermit").is("checked"))
等等,這些方法通過測試都是無效的,不知道是否是由於jquery的版本問題,經測試這種方法是有效的
百度
if ($("#isPermit").is(":checked"))
這裏記錄一下,但願有研究深刻的人看見留言。方法