如何防止打字时使用空格?
我有一个文本字段用于输入一些序列号代码。我想设置此代码在有人使用 spase 时显示警报。这意味着不允许使用空格,只允许使用减号来分隔此代码。您有解决这个问题的想法吗?我可以使用jquery验证吗?
the correct typing:
135x0001-135x0100
i have one textfield for input some serial number code.i want set this code show alert if someone use spase. it means space is not allowed and just allowed use minus for separate this code. Are you have any idea for resolve this problem? can i use jquery validate?
the correct typing:
135x0001-135x0100
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
为了防止输入元素中出现空格,您可以使用 jQuery 来执行此操作:
示例: http:// /jsfiddle.net/AQxhT/
。
To prevent a space in your input element, you could do this using jQuery:
Example: http://jsfiddle.net/AQxhT/
.
简短而甜蜜,不依赖 jQuery
HTML
Short and sweet NOT jQuery dependent
The HTML
您可以在 onkeypress 事件中使用此 js 函数。这是js函数。
这是输入元素(文本框)
you can use this js function in an onkeypress event. Here is the js function.
here is the input element (textbox)