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

Javascript: Getting node value - Stack Overflow

programmeradmin1浏览0评论

I am pretty new to Javascript and I need to get the value of the node with id firstvalue so that I can use it in my script. Can anyone please tell me how do I get that value?

<div id="myDiv">

<span id="firstValue"> 5.22 <span id="nestedValue"> 500 </span></span>

</div> <!-- myDiv -->

I am pretty new to Javascript and I need to get the value of the node with id firstvalue so that I can use it in my script. Can anyone please tell me how do I get that value?

<div id="myDiv">

<span id="firstValue"> 5.22 <span id="nestedValue"> 500 </span></span>

</div> <!-- myDiv -->
Share Improve this question asked Jul 29, 2011 at 15:26 haunted85haunted85 1,6717 gold badges24 silver badges40 bronze badges 2
  • Do you want the inner html (it is nested) or the first value, that would be something like the text content. If the latter, what should be retrieved in the case <span id="firstValue"> 5.22 <span> foo</span> 42 </span>? – Dilettant Commented Jul 29, 2011 at 15:37
  • @Dilettant: I want to retrieve just 5.22 and ignore everything else. – haunted85 Commented Jul 29, 2011 at 15:41
Add a ment  | 

5 Answers 5

Reset to default 6

document.getElementById("firstValue") will get you a reference to the <span>. This has two child nodes, which you can reference via the array-like childNodes property, or in this case simply using firstChild and lastChild properties. For example, the following will return you the string " 5.22 ":

document.getElementById("firstValue").firstChild.nodeValue;
var nodeValue = document.getElementById("firstValue").innerHTML

this will = "5.22 <span id="nestedValue"> 500 </span>"

Many javascript libraries are helping a lot in accessing DOM elements, such as: prototype, dojo, jQuery to name a few. In prototype you would type: $('firstValue').firstChild.nodeValue

Here is a simple function for that purpose, and with error handling for the case the span would not exist or would be empty:

function getFirstValue() {
    var spanFirstValue = document.getElementById("firstValue");
    if (spanFirstValue) {
        var textNode = spanFirstValue.childnodes[0];
        if (textNode) {
            return textNode.data;
        }
    }
    return "";
}

This can also be done like so...

document.getElementById("firstValue").textContent;

Which will give you the text content without the html.

发布评论

评论列表(0)

  1. 暂无评论