English 中文(简体)
使用jQuery的单选按钮检查
原标题:
  • 时间:2008-12-31 19:24:20
  •  标签:

在我的页面上循环遍历所有单选按钮,并为特定问题警告用户未选中其中任何一个的最佳方法是什么?

注意:一个页面上有多个问题。

<li>
  <fieldset>
  <h3>What music do you listen to?</h3>  

        <ul class="answerList">
            <li>
                <input type="radio" id="choice_22" name="answer8" value="1" class=""/>
                <label for="choice_22" class="">Heavy Metal  </label>
            </li>
            <li>
                <input type="radio" id="choice_23" name="answer8" value="2" class=""/>
                <label for="choice_23" class="">Pop music</label>
            </li>
            <li>
                <input type="radio" id="choice_24" name="answer8" value="3" class=""/>
                <label for="choice_24" class="">Oh, a mix of stuff </label>
            </li>
         </ul>
       </fieldset>   
      </li>
问题回答
if (undefined === $("input[name= answer8 ]:checked").val()) {
    // do something
}




相关问题
热门标签