Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的页面使用 Jquery 验证引擎。我面临的问题是它不验证隐藏的字段。
有没有办法解决这个问题?
请帮帮我。。
隐藏字段通常不会由用户更改,因此无需验证隐藏字段。如果您想验证它,您可以将 type 属性更改为 text 并添加 css display:none 。
只需在验证脚本中添加 'ignore: "",'。
$("#form_id").validate( { ignore: "", rules: {}, messages: {} });