如何使用 jQuery 只允许字符串中包含某些特定字符

发布于 2024-12-08 17:15:46 字数 216 浏览 0 评论 0原文

我让用户输入一些标签。这些标签应仅包含字符:

  • [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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

回首观望 2024-12-15 17:15:46

您可以将 keyup 事件处理程序分配给相关的 input 元素,并使用以下代码过滤值:

$("input").keyup(function(){
    var value = $(this).val().replace(/[^-a-zA-Z0-9]/g, "");
    $(this).val(value)
})
  • $("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 relevant input element, and filter the values using this code:

$("input").keyup(function(){
    var value = $(this).val().replace(/[^-a-zA-Z0-9]/g, "");
    $(this).val(value)
})
  • $("input") selects all input elements. Adjust this selector to meet your wishes.
  • The 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.
无力看清 2024-12-15 17:15:46

不需要 jQuery:

str.replace(/[^a-z0-9\-]/ig,"");

将删除除字母、数字或破折号之外的任何内容。

No need for jQuery:

str.replace(/[^a-z0-9\-]/ig,"");

Will remove anything that's not a letter, a number or a dash.

初熏 2024-12-15 17:15:46

一个简单的正则表达式替换:

userInputString.replace(/[^a-z0-9\-]/ig, "")

A simple regular expression replace:

userInputString.replace(/[^a-z0-9\-]/ig, "")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文