用于防止数字键盘上出现特殊字符的 JavaScript 或 Jquery 代码
在我的项目中,我必须阻止用户表单在文本框中输入以下字符: !@#$%^&*()
。那么如何使用 JavaScript/Jquery 来实现这一点呢?我在 ASP.NET Web 应用程序中使用它。
In my project, I have to prevent the user form entering the following chars in the text box:!@#$%^&*()
. So How to achieve this with JavaScript/Jquery? I am using it in asp.net web application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用以下库: jQuery 插件验证
并添加自定义方法作为此处演示给美国打电话
希望这会有所帮助。
You can use the following library : jQuery plugin validation
And add a custom method as demoed here Phone US
Hope this helps.
使用 正则表达式 和/或 jQuery 验证 客户端插件。但是,您还应该在服务器端验证您的内容。
Use regular expression and/or jQuery validation plugin on client side. However you should validate your stuff also on server side.
尝试为每个字符编写一个代码。
您可以尝试 我该怎么办使用 jquery 阻止或限制输入字段中的特殊字符?
哦,是的,并在服务器端验证您的输入
Try this a code for each character.
You could try how do i block or restrict special characters from input fields with jquery?
Oh yes and validate your input on the server side as well