#nav 链接中的自行车 ID

发布于 2024-08-29 18:08:47 字数 59 浏览 3 评论 0原文

我想从 #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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

千と千尋 2024-09-05 18:08:47

您可以使用 XPath 表达式来获取包含所有感兴趣节点的集合。

document.evaluate("//div[@id='nav']/a", document, null, XPathResult.UNORDERED_NODE_ITERATOR_TYPE, null)

上面的代码将返回包含所有 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.

document.evaluate("//div[@id='nav']/a", document, null, XPathResult.UNORDERED_NODE_ITERATOR_TYPE, null)

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

二手情话 2024-09-05 18:08:47

如果你在浏览器中执行此操作,我建议使用 JQuery,然后你可以使用类似于 CSS 的选择器,它会让这变得很容易。

$('#nav a').each(function(index) {
    alert($(this).attr('id');
}

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.

$('#nav a').each(function(index) {
    alert($(this).attr('id');
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文