早上好,我想知道你是否可以在这个问题上帮助我:当另一个输入值满足条件时,我根据需要对选择元素应用验证。我正在使用验证jQuery插件来执行此操作。这是伪代码:if(textbox == "valueX"){mySelectEelement is required;}
(意味着我必须从select元素中选择一个值。)。因此,由于某种原因,select元素没有进行我想要应用的验证。
请查看我在Plunker创建的完整示例代码:
<html lang="en">
<head>
<title></title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.9.1.js"></script>
<script src="https://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
<script>
$( function() {
$.validator.setDefaults({
//debug: true,
success: "valid"
});
$( "#myform" ).validate({
rules: {
borough: {
required: false
}
}
});
$('#state').on('change', function () {
if ($(this).val().toUpperCase() == "NY" || $(this).val().toUpperCase() == "NEW YORK") {
$('#borough').rules('add', {
required: true
});
} else{
$('#borough').rules('remove');
}
});
} );
</script>
</head>
<body>
<form id="myform">
<div>
<p id="pid"></p>
<input id='text' type='text' value='other'/>
</div>
<br/>
<input type="text" id="state" name="state" />
<select name="borough" id="borough">
<option value="" select="selected"></option>
<option value="Staten Island">Staten Island</option>
<option value="Brooklyn">Brooklyn</option>
<option value="Queens">Queens</option>
<option value="NY">NY</option>
</select>
</form></body> </html>
答案 0 :(得分:3)
无需外部处理程序和功能。您可以使用depends
对象中required
下的rules
属性来包含条件逻辑......
$("#myform").validate({
rules: {
borough: {
required: {
depends: function(element) {
if ($('#state').val().toUpperCase() == "NY" || $('#state').val().toUpperCase() == "NEW YORK") {
return true;
} else {
return false;
}
}
}
}
}
});
在没有depends
....
$("#myform").validate({
rules: {
borough: {
required: function(element) {
if ($('#state').val().toUpperCase() == "NY" || $('#state').val().toUpperCase() == "NEW YORK") {
return true;
} else {
return false;
}
}
}
}
});
DEMO 2:jsfiddle.net/ubkb0pmd/1/