如何根据下拉选择值将输入设为必填字段
我有以下下拉选择。如果任何用户从下拉列表中选择 Op 1,我希望将以下所有文本类型输入设置为必填字段,否则它将保留为普通字段。
请您告诉我如何在 jquery 中编写此验证规则吗?
提前致谢 :)
<select name="something" id=something>
<option value="1"> Op 1 </option>
<option value="2"> Op 2 </option>
</select>
<input type="text" name="text1" id="text1" value=""/>
<input type="text" name="text2" id="text2" value=""/>
<input type="text" name="text3" id="text3" value=""/>
<script>
$(function(){
$('form.uniForm').uniform({
prevent_submit : true
///*****What to write here??
});
});
</script>
I have the following dropdown select. If any user selects Op 1 from the dropdown I want to make all the following text type inputs a required field, otherwise it would stay as a normal field.
Would you please kindly show me how write this validation rules in jquery?
Thanks in Advance :)
<select name="something" id=something>
<option value="1"> Op 1 </option>
<option value="2"> Op 2 </option>
</select>
<input type="text" name="text1" id="text1" value=""/>
<input type="text" name="text2" id="text2" value=""/>
<input type="text" name="text3" id="text3" value=""/>
<script>
$(function(){
$('form.uniForm').uniform({
prevent_submit : true
///*****What to write here??
});
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定
uniForm
插件是如何工作的,但如果有一个选项可以使字段成为必填字段,那么它应该在逻辑上获得一个布尔值。因此您可以将选项值更改为
0
和1
并执行以下操作:I'm not sure how
uniForm
plugin works, but if there is an option to make fields required it should get a boolean value logically.so you can change your options value to
0
and1
and do that as below :