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

javascript - Getting link text within a div - Stack Overflow

programmeradmin2浏览0评论

I currently have an href that I'd like to pull text from. Unfortunately I don't have access to to code, and the limited code I have to work with is the following:

<div id="myDiv">
  <h1 class="myClass">
    <a href="link">TEXT</a>
  </h1>
</div>

I'd prefer using JavaScript to obtain this information. What would be the best way to reference 'TEXT'? I've tried a couple methods using getElementById and getElementsByClassName, but each have proven unsuccessful. Thanks!

I currently have an href that I'd like to pull text from. Unfortunately I don't have access to to code, and the limited code I have to work with is the following:

<div id="myDiv">
  <h1 class="myClass">
    <a href="link">TEXT</a>
  </h1>
</div>

I'd prefer using JavaScript to obtain this information. What would be the best way to reference 'TEXT'? I've tried a couple methods using getElementById and getElementsByClassName, but each have proven unsuccessful. Thanks!

Share edited May 10, 2012 at 17:38 gdoron 150k59 gold badges302 silver badges371 bronze badges asked May 10, 2012 at 17:30 GigazelleGigazelle 1,3891 gold badge25 silver badges36 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 9
var text = document.getElementById('myDiv')
                   .getElementsByTagName('a')[0].innerHTML;
alert(text);​ // TEXT

Live DEMO

If you can use jQuery...:

var text = $('#myDiv .myClass a').text();

Can you use jQuery?

It would be

$(".myClass a").text();

Im not sure in plain javascript. That is why I am asking.

var links = document.getElementsByTagName('a');

for (var i = 0; i < links.length; i++)
    console.log('Link ' + i + ' text: ' + links[i].innerHTML);

Assuming you can't modify the HTML:

http://jsfiddle/9rXaS/

document.getElementsByClassName('myClass')[0].childNodes[1].innerHTML;
发布评论

评论列表(0)

  1. 暂无评论