#nav 链接中的自行车 ID
我想从 #nav div 内的链接知道 id 名称,我尝试查找 id 有什么,但我没有找到任何相关信息。
i want to know the id names from links inside #nav div, i try to find what id have , but i dont find nothing about this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 XPath 表达式来获取包含所有感兴趣节点的集合。
上面的代码将返回包含所有 a 元素的集合,这些元素是具有 nav id 的 div 元素的子元素。
这是工作示例: http://jsfiddle.net/vycMP/3/
您可以阅读更多有关XPath 在这里: http://www.w3schools.com/xpath/default.asp
You can use XPath expression to get set containing all interesting nodes.
Code above will return set containing all a elements that are children of div element that has nav id.
Here is working example: http://jsfiddle.net/vycMP/3/
You can read more about XPath here: http://www.w3schools.com/xpath/default.asp
如果你在浏览器中执行此操作,我建议使用 JQuery,然后你可以使用类似于 CSS 的选择器,它会让这变得很容易。
If you're doing this in the browser, I suggest using JQuery, then you can use a selector similar to CSS, which would make this quite easy.