使用 Jquery,如何获取类“c1”的所有链接;并在 href 中有 abcdef
使用 jquery,我想获取页面上具有 css 类“c1”并且在 href 的 url 中具有“abcdef”的所有链接。
到目前为止我知道该怎么做:
$(".c1")
Using jquery, I want to get all links on the page with the css class 'c1' and that have 'abcdef' in the url of the href.
So far I know how to do:
$(".c1")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 attribute-contains 选择器 (
[attr*=val]
),像这样:You can use an attribute-contains selector (
[attr*=val]
), like this:尝试类似的内容
有关 jQuery 选择器的更多信息,请参阅 选择器
Try something like
For more on jQuery selectors see Selectors