jquery验证值的条件

时间:2016-07-12 14:56:56

标签: javascript jquery html radio-button

我想在按钮收音机上编码验证。 (是还是不是)。谢谢。 我的代码:

conditions : {
    required : {
        depends: function(element) {
            if ($('#conditions')val('Yes').is(':checked')){
                return true;
            }else{
                return false;
            }
        }
    }
},

2 个答案:

答案 0 :(得分:0)

您可能想要返回或不检查值为"Yes"的广播是否已选中,并且由于ID是唯一的,我们假设单选按钮具有ID #conditions

conditions : {
    required : {
        depends: function(element) {
            return $('#conditions').is(':checked');
        }
    }
},

答案 1 :(得分:0)

将UniqueId提供给YES单选按钮,并使用以下代码:

if ($('#uniqueid').prop("checked")) {
    return true;
} else {
    return false;
}

简而言之:

return $('#uniqueid').prop("checked")

希望这有帮助。