当链接具有特定标签时如何添加类

发布于 2024-12-11 19:54:37 字数 590 浏览 0 评论 0原文

我有一系列没有 a 类的链接。我无法在 HTML 中手动添加任何类...否则我会的。我想使用 JavaScript 或 jQuery 来检测某个链接标签,并在找到匹配项时向其添加一个类。

这是 HTML:

<ul class="menu-main-nav">
   <li><a href="/destination/">Duck</a></li>
   <li><a href="/destination/">Duck</a></li>
   <li><a href="/destination/">Goose</a></li>
</ul>

我想在“Goose”出现时添加一个类。这是我尝试过的……但失败了。

$(document).ready(function(){
    if ($("#menu-main-nav li a").text() == "Goose") { this.addClass("itsagoose")};
});

I have a series of links with no a classes. I am unable to manually add any classes in the HTML...otherwise I would. I want to use either JavaScript or jQuery to detect a certain link label and add a class to it if the match is found.

Here is the HTML:

<ul class="menu-main-nav">
   <li><a href="/destination/">Duck</a></li>
   <li><a href="/destination/">Duck</a></li>
   <li><a href="/destination/">Goose</a></li>
</ul>

I want to add a class whenever "Goose" appears. Here is what I attempted... and failed.

$(document).ready(function(){
    if ($("#menu-main-nav li a").text() == "Goose") { this.addClass("itsagoose")};
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

孤星 2024-12-18 19:54:37

使用 .filter 方法:

$("#menu-main-nav li a").filter(function(){
    return $(this).text() == "Goose"; //<--- Only include these elements
}).addClass("itsagoose");

使用 .html()< /code> 而不是 .text() 如果您想要精确匹配,并且不想允许任何其他内容(例如,不匹配Goose)。

小提琴:http://jsfiddle.net/RWSCY/

Use the .filter method:

$("#menu-main-nav li a").filter(function(){
    return $(this).text() == "Goose"; //<--- Only include these elements
}).addClass("itsagoose");

Use .html() instead of .text() if you want an exact match, and don't want to allow anything else (eg, don't match <a><span>Goose</span></a>).

Fiddle: http://jsfiddle.net/RWSCY/

蓦然回首 2024-12-18 19:54:37

查看 jQuery 包含选择器。这就是它的用途:)

Look at the jQuery contains selector. That's what it's for :)

柏林苍穹下 2024-12-18 19:54:37

好吧,你可以使用过滤器:

演示

$("a").filter(function(){
    return $(this).text() == "Goose"
});

Well, you could use filter:

Demo

$("a").filter(function(){
    return $(this).text() == "Goose"
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文