admin管理员组文章数量:1344708
I am writing a client-side JavaScript code and I have to retrieve the URL from the href
attribute.
I have already travelled the DOM to a point where:
document.getElementById('something').getElementsByTagName('td')[3];
Which outputs:
<td><a href=""></a></td>
From there, how do I get ?
I tried using .getAttribute("href")
, but I got null
.
Am I missing something?
I am writing a client-side JavaScript code and I have to retrieve the URL from the href
attribute.
I have already travelled the DOM to a point where:
document.getElementById('something').getElementsByTagName('td')[3];
Which outputs:
<td><a href="http://example."></a></td>
From there, how do I get http://example.
?
I tried using .getAttribute("href")
, but I got null
.
Am I missing something?
Share Improve this question edited Aug 13, 2018 at 18:48 u-ways 7,8746 gold badges39 silver badges55 bronze badges asked Aug 13, 2018 at 18:11 hnvasahnvasa 8604 gold badges13 silver badges26 bronze badges 2-
1
Do like this
document.querySelector('#something td:nth-child(3) a').href
– Asons Commented Aug 13, 2018 at 18:16 -
I would say so you are missing something. Ever hear of a
td
(table cell), having ahref
attribute? No? Me either. – gforce301 Commented Aug 13, 2018 at 18:16
4 Answers
Reset to default 4The td
tag does not have href
attribute (no table cell has this attribute); its child a
tag does.
You can get the a
tag inside the table cell with a query selector from which you can get the href
attribute.
document.getElementById('something').getElementsByTagName('td')[3].querySelector('a').href;
Or you can bine the whole selection into a query selector.
document.querySelector('#something td:nth-child(3) a').href;
<table id="something">
<td>1</td><td>2</td><td><a href="http://www.example.">example.</a></td>
</table>
<script>
console.log(document.querySelector('#something td:nth-child(3) a').href);
</script>
Edit
I think I should point out (since this has been accepted), what @LGSon had put in the ments and @hev1 has put in their answer, that this should be handled in a more elegant way than simply calling getElement
on multiple DOM elements.
Here is a proposed (and much nicer) version of the call to get the href
value:
document.querySelector('#something td:nth-child(3) a').href;
Original Answer
The href
property exists on the anchor tag (<a>
) which is a child of the <td>
element. You will need to grab the anchor by using something like the DOM children
property like so:
tdElement = document.getElementById('something').getElementsByTagName('td')[3];
anchor = tdElement.children[0];
anchor.getAttribute("href");
Purely using js
(not jquery
) and if you want to specifically continue from when you have selected the td
tag you desire:
td.getElementsByTagName("a")[0].href
td
being the td
element that was returned from your example code.
<script>
let x = document.getElementById("test").href;
console.log(x);
</script>
You can also get by class or tag but you will have to loop through the array, and that could be a lot of tags on a page.
also,
document.getElementById('something').getElementsByTagName('td')[3].firstElementChild.href
本文标签: htmlJavaScriptget href attribute value via DOM traversalStack Overflow
版权声明:本文标题:html - JavaScript - get href attribute value via DOM traversal - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743742270a2531112.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论