最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

html - JavaScript - get href attribute value via DOM traversal - Stack Overflow

programmeradmin0浏览0评论

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 a href attribute? No? Me either. – gforce301 Commented Aug 13, 2018 at 18:16
Add a ment  | 

4 Answers 4

Reset to default 4

The 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
发布评论

评论列表(0)

  1. 暂无评论