我有一組單選按鈕,我想將選中的attr添加到其中的一個。 這是我的代碼:如何使用jQuery將選中的attr添加到單選按鈕nth-child?
<input type="radio" name="radioButton" id="rd1">
<input type="radio" name="radioButton" id="rd2">
<input type="radio" name="radioButton" id="rd3">
<input type="radio" name="radioButton" id="rd4">
<input type="radio" name="radioButton" id="rd5">
<script>
$('input[name=slider]:nth-child(3)').prop('checked', true);
</script>
和我測試的腳本.attr( '檢查', '檢查')。 但腳本不能正常工作。我的錯是什麼?
試$( '輸入[名稱=單選]:第n個孩子(3)')ATTR( 「選中」, 「選中」) – Przemek 2013-03-11 08:10:02
你的名字從滑蓋改爲單選按鈕,對於這一點。工作 – Przemek 2013-03-11 08:16:09