nodeValue 属性用于获取节点值。您需要指定节点。
您可以尝试运行以下代码来了解如何获取nodeValue属性。
直播演示
<!DOCTYPE html> <html> <body> <p>Get the node value</p> <button>Demo Button Text</button> <script> var val = document.getElementsByTagName("BUTTON")[0]; var res = val.childNodes[0].nodeValue; document.write("<br>Node Value: "+res); </script> </body> </html>
以上是JavaScript HTML DOM中的nodeValue属性是什么意思?的详细内容。更多信息请关注PHP中文网其他相关文章!