0
我有這樣的HTML標記:如何當複選框被選中執行額外的jQuery代碼/選中
<div class="wf__jqAPcontrol[1] wf__hide wf__optional" style="display: block;">
<label>Additional Info</label>
<fieldset class="wf__list wf__jqAPhtml" enabled="enabled">
<label for="specialDiscount\[1\]_529663" style="padding: 0 !important">
<input type="checkbox" value="-5.00" name="specialDiscount[1]" id="specialDiscount\[1\]_529663" class="wf__list jq__recomputeThisService" checked="checked"> Discount (5%)
</label>
</fieldset>
</div>
我有這樣的jQuery代碼:
if ($('#specialDiscount\\[1\\]_529663').prop('checked')) alert('checked');
else alert('unchecked');
我不能讓jQuery的識別複選框屬性。它總是返回未選中狀態。
不知道你的意思@TusharGupta,你可以幫我有點...有什麼不好? –
非常好,感謝您的幫助@TusharCupta - 您幫助我實現了這一目標。 –
@ H.Ferrence很高興幫助:) –