Jquery:选择一个 href 链接并使用“each”进行导航方法
是否可以使用 jQuery 选择其他“标签”中的完整链接?
我想选择每个项目的每个 href 链接 (
)。我的想法是使用方法 each
然后提取链接,用于导航然后。
这是页面代码的一部分: http://pastebin.com/3Vjib4UR
完整代码页面中,
项。
标记中有更多
PS:我想在 firefox (Greasemonkey) 的外部插件中使用该脚本,而不是直接在页面中使用。
提前致谢。
亲切的问候。
Is it possible using jQuery to select one full link that is in others 'tags'?
I would like select each href link of each item (<li>
)..
My idea is to use the method each
and then extract the link, for use to navigate then.
This is the part of the code of the page: http://pastebin.com/3Vjib4UR
Where in full code of page, there more <li>
items in the <ul>
tag.
P.S: I would like use the script in an external plugin of firefox (Greasemonkey),and not direct in the page.
Thanks in advance.
Kind regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者更短:
如果您只想获取某些链接,只需调整选择器,例如
您确实应该了解如何 < em>选择器 的作用是为了有效地使用 jQuery。
Or shorter:
If you want to get only certain links, just adjust the selector, e.g.
You really should learn how selectors works in order to use jQuery efficiently.
像这样?
Like this?