如何使用 Ignore 属性切换 Jquery 验证?
我有一个面板,单击按钮即可切换可见/不可见。 假设面板有额外的字段,我想在面板隐藏时关闭这些字段的验证,但在显示时将其重新打开。
我已经看到了 Jquery 验证插件的“忽略”选项,但我想知道在面板再次显示后如何重新启用它。
I have a panel which is toggled visible/invisible on clicking a button.
Say the panel has extra fields, I'd like to turn off validation on those fields when the panel is hidden, but turn them back on when shown.
I've seen the 'Ignore' option of the Jquery validation plugin, but I'm wondering how I'd go about re-enabling it after the panel is shown again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当面板可见/隐藏时,您可以分别使用
addClass/removeClass
吗?May be you could use
addClass/removeClass
when the panel is visible/hidden respectively?