仅表单类型数字!
<html>
<form action="update.php" method="POST" name="ID">
<input type="text" name="ID" ">
<input type="Submit" value="Submit">
</form>
</html>
这种形式如何只接受数字而不接受“az”或“,./';[])(-=”?
<html>
<form action="update.php" method="POST" name="ID">
<input type="text" name="ID" ">
<input type="Submit" value="Submit">
</form>
</html>
How can this form accept only numbers and not "a-z" or ",./';[])(-=" ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 javascript 函数 isNAN 来检查字段的值是否“不是数字”。因此,我向提交按钮添加了一个 onclick 事件,以调用一个检查它的函数:
希望它有帮助!
You can use the javascript function isNAN to check if the value of the field "is not a number". So, I added a onclick event to the submit button to call a function that checks it:
Hope it helps!
您必须使用 javascript 进行验证。实际的代码取决于你使用的是纯JS还是一些框架。
You have to use javascript for verification. The actual code depends on whether you use pure JS or some framework.
最简单的是使用模式属性并指定正则表达式。它适用于所有新浏览器。
在这种情况下
pattern="[0-9]*"
,它将接受零个或多个数字。如果您需要至少一位数字,请使用
[0-9]+
。使用时可能希望使用
\d*
或\d+
例如pattern="\d*"
Simplest is to use pattern attribute and specify a regular expression. It works in all new browsers.
in this case
pattern="[0-9]*"
, it will accept zero or more digits.use
[0-9]+
if you want at least one digit.use may wish using
\d*
or\d+
e.gpattern="\d*"