如何使用 jQuery 只允许字符串中包含某些特定字符
我让用户输入一些标签。这些标签应仅包含字符:
[az]
[AZ]
- 数字
[0-9]
- 和字符
-
>
如果存在任何其他字符,则应将其从字符串中删除。
这可能吗?最快的方法是什么?
I make users input some tags. These tags should contain only chars:
[a-z]
[A-Z]
- numbers
[0-9]
- and the character
-
If any other char is present, it should be removed from the string.
Is this possible? What is the fastest way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将
keyup
事件处理程序分配给相关的input
元素,并使用以下代码过滤值:$("input")
选择所有输入
元素。 调整此选择器以满足您的愿望。keyup
事件。$(this).val()
返回当前输入元素的值。[^-a-zA-Z0-9]
匹配任何无效字符(/[^-a-z0-9]/i
具有相同的效果)/g
是全局标志,这意味着:匹配正则表达式的每个匹配项。.replace(/.../g, "")
用空字符串替换所有无效字符(=删除所有无效字符)$(this).val(value)
将当前输入元素的值更改为有效字符串。You can assign a
keyup
event handler to the relevantinput
element, and filter the values using this code:$("input")
selects allinput
elements. Adjust this selector to meet your wishes.keyup
event is triggered when the user releases a key.$(this).val()
returns the value of the current input element.[^-a-zA-Z0-9]
matches any invalid characters (/[^-a-z0-9]/i
has the same effect)/g
is the global flag, which means: Match every occurrence of the RegExp..replace(/.../g, "")
replaces all invalid characters by an empty string (=removes all invalid characters)$(this).val(value)
changes the value of the current input element to a valid string.不需要 jQuery:
将删除除字母、数字或破折号之外的任何内容。
No need for jQuery:
Will remove anything that's not a letter, a number or a dash.
一个简单的正则表达式替换:
A simple regular expression replace: