Jquery 验证规则 - 如何要求在验证之前选择一个选项
我希望仅在选择下拉列表中的特定选项时才验证某些输入数据。对于单选按钮,这是通过以下规则完成的:
required : "#radioId:checked"
如何对下拉列表中的选项完成此操作?
I want some input data to be validated only if specific option in a dropdown is selected. For radiobutton this is done with such rule:
required : "#radioId:checked"
How can this be done for an option in dropdown?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果内存可用,您可以有一个回调,返回您想要查看的选项是否被选中:
If memoery serves, you can have a callback that returns whether the option you want to see selected is selected:
另一种选择可能是编写自己的选择器:
选择器:
Another option could be to write your own selector:
Selector:
您可以使用依赖检查器,例如:
You can use the depends checker with something like: