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 중국어 웹사이트의 기타 관련 기사를 참조하세요!