我有一个简单的表格
<form role="form" id="my_form" class="form-horizontal">
<label class="radio">
<input type="radio" name="reason[]" id="reasonOne" value="1"> Something
</label>
<label class="radio">
<input type="radio" name="reason[]" id="reasonTwo" value="2"> Something else
</label>
<label class="radio">
<input type="radio" name="reason[]" id="reasonThree" value="Other"> Other
</label>
<input type="text" name="reason[]" placeholder="Please specify" id="other" class="form-control">
</form>
底部无线电控制文本输入。最初这是隐藏的,我做
$('input:radio[name="reason[]"]').change(
function(){
if ($(this).is(':checked') && $(this).val() == 'Other') {
$('#other').css("display", 'block');
} else {
$('#other').css("display", 'none');
}
}
);
定义单选按钮的规则是直截了当的,我只需要确保选中一个。我在使用自定义规则时遇到了一些问题。基本上,如果选择了reasonThree,我需要确保它们在文本输入中输入一些此时显示的内容。 此刻,我正在尝试以下内容。
jQuery.validator.addMethod('customrule', function() {
if($("input[id='reasonFive']:checked")) {
if(('#other').val().length == 0) {
return false;
} else {
return true;
}
}
return false;
}, 'Please input a reason' );
var validator = $("#my_form").validate({
rules: {
'reason[]': {
required: true,
customRule: true
}
},
messages: {
'reason[]': {
required: jQuery.validator.format("Please select an option")
}
}
});
如果他们选择了最后一个单选按钮,我怎样才能确保他们在文本区域输入内容?
由于
答案 0 :(得分:2)
没有标识为[id='reasonFive']
的元素。尝试更改自定义方法,如下所示: -
$.validator.addMethod("customRule",function(value,element){
if($('#reasonThree').is(':checked')){
return $('#other').val().trim().length>0;
}else{
return true;
}
},"Please input a reason");