jqueryを使用して検証する質問フォームがあります。私のフォームは、次のようになります。複数のラジオボタンの選択を確認する方法は?
<form id="question_answer_form" action="submit_answers.php" method="post">
<table class="zebra-striped">
<tr>
<td >Question 1</td>
<td>
<input type="radio" name="question_answer1" value="1"> Yes
<input type="radio" name="question_answer1" value="0"> No
</td>
</tr>
<tr>
<td >Question 2</td>
<td>
<input type="radio" name="question_answer2" value="1"> Yes
<input type="radio" name="question_answer2" value="0"> No
</td>
</tr>
<tr>
<td >Question 3</td>
<td>
<input type="radio" name="question_answer3" value="1"> Yes
<input type="radio" name="question_answer3" value="0"> No
</td>
</tr>
<tr>
<td colspan="2"><input class="btn success" type="button" value="Submit" id="questions"/></td>
</tr>
</table>
</form>
jQueryのコール
$("#questions").click(function (e) {
e.preventDefault();
// Check radio button status and notify...;
});
任意の提案を?
これは素晴らしい、感謝しました! – Paul
あなたは大歓迎です。 – Ph0en1x