可能重複訪問複選框:
jQuery value selector你如何通過價值的使用jQuery
我有這樣的HTML:
<div style="" id="results">
<label class="wList"><input checked="checked" class="wList-chk" name="wList[]" value="6" type="checkbox">Running</label>
<label class="wList"><input checked="checked" class="wList-chk" name="wList[]" value="1" type="checkbox">Baseball</label>
<label class="wList"><input checked="checked" class="wList-chk" name="wList[]" value="3" type="checkbox">Basketball</label>
</div>
我要訪問一個複選框按價值,並想知道如何做到這一點。我曾嘗試:
$("#results .wList .wList-chk input:checkbox").attr('value').effect('highlight',{},1500);
我在做什麼錯?
'attr' as getter返回一個沒有'effect'方法的字符串。 – undefined
http://stackoverflow.com/questions/4974033/jquery-value-selector – drneel
請閱讀:[XY問題](http://meta.stackexchange.com/questions/66377/what-is-the-xy-problem ) – Peter