所属分类:web前端开发
nodeValue 属性用于获取节点值。您需要指定节点。
您可以尝试运行以下代码来了解如何获取nodeValue属性。
直播演示
1 2 3 4 5 6 7 8 9 10 11 12 | <!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> |