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.
对于移动表单验证,您更喜欢什么方法/插件。即使在具有良好 JavaScript 支持的旧手机上也是如此。
我没有使用 jQuery Mobile 或 Sencha。我需要独立的解决方案,错误应该作为警告框出现。
您可以在输入字段中使用“必需”和“模式”标签。
例如:
<input type="email" placeholder="Enter your email address" required="required" pattern="[A-z]{3}" size="40"/>