0
A
回答
0
function validate() {
if (document.myForm.name.value == "") {
alert("Enter a name");
document.myForm.name.focus();
return false;
}
if (!/^[a-zA-Z]*$/g.test(document.myForm.name.value)) {
alert("Invalid characters");
document.myForm.name.focus();
return false;
}
}
您可以使用下面腳本來驗證你的文本框..
0
下面是一個輸入字段的例子,只允許A-Z,a到z字符值。
<form action="demo_form.asp">
Country code: <input type="text" name="country_code"
pattern="[A-Za-z]" title="Country Code">
<input type="submit">
</form>
相關問題
- 1. 驗證HTML文本框
- 2. 數字驗證一個HTML文本框
- 3. HTML文本框掩碼或驗證
- 4. HTML輔助/文本框驗證
- 5. 驗證文本框
- 6. 文本框驗證
- 7. 文本框驗證
- 8. 驗證文本框
- 9. 文本框驗證邊框
- 10. 使用javascript和正則表達式驗證HTML文本框
- 11. 機器人框架文本驗證錯誤,由於html格式
- 12. URL格式驗證文本框後面
- 13. 實體框架 - 驗證文本格式
- 14. 驗證XDR模式文件本身
- 15. 正則表達式驗證器不驗證空的文本框
- 16. 輸入文本框驗證
- 17. C# - 文本框驗證
- 18. 驗證文本框wpf
- 19. 驗證文本框Javascript
- 20. jQuery驗證文本框valuess
- 21. Toolstripbutton不驗證文本框
- 22. asp.net-MVC文本框驗證
- 23. 驗證文本框在MVC
- 24. 驗證文本框ASP.NET
- 25. ASP.Net文本框驗證
- 26. javascript驗證的文本框
- 27. 驗證在文本框中
- 28. WP7的文本框驗證
- 29. C#DataGridViev文本框驗證
- 30. 驗證多個文本框