XML DOM textContent 属性

  • 定义和使用

    textContent 属性设置或返回节点及其后代的文本内容。
    设置时,所有子节点都将被删除,并被包含该属性设置为字符串的单个 Text 节点替换。
  • 语法

    nodeObject.textContent
    
    
  • 示例

    以下代码片段将 "books.xml" 并返回 <book> 元素的文本内容:
    <!DOCTYPE html>
    <html>
      <body>
      
      <p id="demo"></p>
    
      <script>
        var xhttp = new XMLHttpRequest();
        xhttp.onreadystatechange = function() {
            if (xhttp.readyState == 4 && xhttp.status == 200) {
                myFunction(xhttp);
            }
        };
        xhttp.open("GET", "books.xml", true);
        xhttp.send();
        
        function myFunction(xml) {
            var x, i, xmlDoc, txt;
            xmlDoc = xml.responseXML;
            txt = "";
            x = xmlDoc.getElementsByTagName('book');
            for(i = 0; i < x.length; i++) {
                txt += x.item(i).textContent + "<br>";
            }
            document.getElementById("demo").innerHTML = txt;
        }
      </script>
      
      </body>
    </html>
    
    尝试一下