如何使用 jQuery 在选择时忽略大小写?

发布于 2024-07-14 05:49:19 字数 210 浏览 10 评论 0原文

我目前正在尝试使用以下 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 技术交流群。

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

发布评论

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

评论(4

黑凤梨 2024-07-21 05:49:19

我自己也遇到过这个。 我稍微改变了逻辑,以便我可以在不区分大小写的情况下进行比较。 它需要更多的工作,但至少它有效。

$('a').each(function(i,n) {
    var href = $(n).attr("href");
    href = href.toLowerCase();
    if (href.endsWith('/sites/abcd/sectors'))
        $(n).removeAttr('href');
});

您必须弄清楚自己的 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.

$('a').each(function(i,n) {
    var href = $(n).attr("href");
    href = href.toLowerCase();
    if (href.endsWith('/sites/abcd/sectors'))
        $(n).removeAttr('href');
});

You would have to figure out your own endsWith logic.

雨轻弹 2024-07-21 05:49:19

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

浮光之海 2024-07-21 05:49:19

您可以在 jQuery 中使用函数“is”。 它不区分大小写。

   $("a").each(function() {
     if ($(this).is("a[href$=/sites/abcd/sectors]")) {
       $(this).removeAttr('href');
     }
   })

You may use function "is" in jQuery. It is not case-sensitive.

   $("a").each(function() {
     if ($(this).is("a[href$=/sites/abcd/sectors]")) {
       $(this).removeAttr('href');
     }
   })
魂ガ小子 2024-07-21 05:49:19

首先,这是 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 !"#$%&'()*+,./:;<=>?@[\]^``{|}~ ) as

a 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");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文