当链接具有特定标签时如何添加类
我有一系列没有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
.filter
方法:使用
.html()< /code> 而不是
.text()
如果您想要精确匹配,并且不想允许任何其他内容(例如,不匹配Goose
)。小提琴:http://jsfiddle.net/RWSCY/
Use the
.filter
method: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/
查看 jQuery 包含选择器。这就是它的用途:)
Look at the jQuery contains selector. That's what it's for :)
好吧,你可以使用过滤器:
演示
Well, you could use filter:
Demo