如何选择具有特定文本的所有锚标记

How to select all anchor tags with specific text(如何选择具有特定文本的所有锚标记)
本文介绍了如何选择具有特定文本的所有锚标记的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

给定多个锚标签:

<a class="myclass" href="...">My Text</a>

如何选择与类匹配并带有一些特定文本的锚点.例如选择所有具有类的锚点:'myclass' 和文本:'My Text'

How do I select the anchors matching the class and with some specific text. eg Select all anchors with the class:'myclass' and text:'My Text'

推荐答案

$("a.myclass:contains('My Text')")

这篇关于如何选择具有特定文本的所有锚标记的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Authorization header in img src link(img src 链接中的授权标头)
Add Header to window.location.pathname(将标题添加到 window.location.pathname)
Sending Authorization Token Bearer through Javascript(通过 Javascript 发送 Authorization Token Bearer)
How to send a token with an AJAX request from jQuery(如何使用来自 jQuery 的 AJAX 请求发送令牌)
:hover:before text-decoration none has no effects?(:hover:before text-decoration none 没有效果?)
Is CSS faster when you are specific?(当您特定时,CSS 会更快吗?)