1
如何通過名稱獲得iCheck電臺價值,如$("input[type=radio][name=test]").val()
?似乎它不起作用。請參閱JSFiddle。Javascript:通過名稱獲得iCheck電臺價值
HTML
<div class="i-checks"><label> <input type="radio" checked="" value="a" name="test"> a </label></div>
<div class="i-checks"><label> <input type="radio" value="b" name="test"> b </label></div>
<div class="i-checks"><label> <input type="radio" value="c" name="test"> c </label></div>
The <span id='outputbythis' style='color:green'></span> is checked by $(this).val()
<br>
The <span id='outputbyname' style='color:red'></span> is checked by $("input[type=radio][name=test]").val()
JS
如何通過名稱獲得I檢查收音機的價值? – WCMC
查看我的回覆,我更新了 – Klajdi
謝謝!真的很難找到一個自學者。我的意思是我無法理解和意識到,有時''(「input [type = radio] [name = test]」)'有時會在'$(「input [type = radio] [name = test]」)改爲'$(「input [type = radio] [name = test]:checked」)。val()'。 – WCMC