我有一個單選按鈕:jQuery的無線電陣列選擇
<input type="radio" value="a" name="questions[0]">
<input type="radio" value="b" name="questions[0]">
<input type="radio" value="c" name="questions[0]">
<input type="radio" value="d" name="questions[0]">
<input type="radio" value="a" name="questions[1]">
<input type="radio" value="b" name="questions[1]">
<input type="radio" value="c" name="questions[1]">
<input type="radio" value="d" name="questions[1]">
我如何遍歷這個使用jQuery?我想驗證每個問題的答案。謝謝。
編輯: 或者甚至有一種方式來獲得問題數組的長度?
它可以更具體的名稱,即問題嗎? – dumkat
您可以在循環中使用'$ this.attr('name')'。 – ltalhouarne
'$(本).attr( '名')' –