如何检查多个单选按钮选择?

时间:2012-01-18 13:37:15

标签: jquery html

我有一个问题表单,我想用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...;
    });

有什么建议吗?

2 个答案:

答案 0 :(得分:3)

为每个收音机添加一些类,例如“test_radio” 然后检查

  

$(“。test_radio:checked”)。长度&gt; 1

答案 1 :(得分:1)

jQuery Validation插件是一种用于各种表单验证的绝佳工具。它有各种各样的,包括验证多个单选按钮。

http://bassistance.de/jquery-plugins/jquery-plugin-validation/