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.
我想知道是否可以为我的应用程序中的每个表单禁用 HTML5 验证。
有什么办法可以做到这一点,或者我应该novalidate为每个表单标签添加属性?
novalidate
似乎唯一的方法是novalidate使用 javascript/jquery 为每个表单添加属性,如下所示:
$(document).ready(function() { $("form").attr('novalidate', 'novalidate'); });