检查一个单选按钮是否被选中jquery

这个问题在这里已经有了答案:

  • 检查复选框是否与jQuery 19答案一起检查

  • 尝试这个

    if($('input:radio:checked').length > 0){
    // go on with script
     }else{
        // NOTHING IS CHECKED
     }
    

    首先,只有一个id="test"

    其次,试试这个:

    if ($('[name="test"]').is(':checked'))
    

    像这样的东西:

     $("input[name=test]").is(":checked");
    

    使用jQuery is()函数应该可以工作。

    链接地址: http://www.djcxy.com/p/55977.html

    上一篇: Check if a radio button is checked jquery

    下一篇: UISearchBar not visible until scroll down