如何使用 jQuery 在选择时忽略大小写?
我目前正在尝试使用以下 jQuery 选择器禁用链接:
$("a[href$=/sites/abcd/sectors]").removeAttr("href");
问题是有时页面上的 href 可能并不总是小写。 发生这种情况时,选择器不再匹配。
有谁知道如何解决这个问题? 我可以改变一次行为以忽略大小写吗?
I'm currently attempting to disable a link using the following jQuery selector:
$("a[href$=/sites/abcd/sectors]").removeAttr("href");
The problem is that sometimes the href might not always be lower case on the page. When this happens the selector no longer matches.
Does anyone know how to get around this? Can I change the behaviour this once to ignore case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我自己也遇到过这个。 我稍微改变了逻辑,以便我可以在不区分大小写的情况下进行比较。 它需要更多的工作,但至少它有效。
您必须弄清楚自己的
endsWith
逻辑。I ran into this myself. I switched the logic a bit to allow me to compare it without case. It requires a little more work, but at least it works.
You would have to figure out your own
endsWith
logic.jQuery 是为了扩展而构建的。 您可以更正它或添加您自己类型的不区分大小写的选择器。
Rick Strahl:使用 jQuery 搜索内容并创建自定义选择器过滤器
jQuery was built to be extended. You can correct it or add your own type of case-insensitive selector.
Rick Strahl: Using jQuery to search Content and creating custom Selector Filters
您可以在 jQuery 中使用函数“is”。 它不区分大小写。
You may use function "is" in jQuery. It is not case-sensitive.
首先,这是 NOT VALID 表达式,因为它包含
\
,如果您希望使用任何元字符(例如
!"#$%&' ()*+,./:;<=>?@[\]^``{|}~
) 作为名称的文字部分,必须使用两个反斜杠转义字符:
\\
.: http://api.jquery.com/category/selectors/
因此您必须将
/
转义为\\/
这样您的表达式将为
$("a[href$=\\/sites\\ /abcd\\/扇区]").removeAttr("href");
First this is NOT VALID expression since it contains
\
,If you wish to use any of the meta-characters ( such as
!"#$%&'()*+,./:;<=>?@[\]^``{|}~
) asa literal part of a name, you must escape the character with two backslashes:
\\
.Src : http://api.jquery.com/category/selectors/
so you must escape the
/
to\\/
so your expression will be
$("a[href$=\\/sites\\/abcd\\/sectors]").removeAttr("href");