如何根据下拉选择值将输入设为必填字段

发布于 2025-01-02 08:57:37 字数 641 浏览 0 评论 0原文

我有以下下拉选择。如果任何用户从下拉列表中选择 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反话 2025-01-09 08:57:37

我不确定 uniForm 插件是如何工作的,但如果有一个选项可以使字段成为必填字段,那么它应该在逻辑上获得一个布尔值。
因此您可以将选项值更改为 01 并执行以下操作:

$('form.uniForm').uniform({
  prevent_submit : true,

  required: $("#something").val()

});

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 and 1 and do that as below :

$('form.uniForm').uniform({
  prevent_submit : true,

  required: $("#something").val()

});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文