Thuộc tính nodeValue được sử dụng để lấy giá trị nút. Bạn cần chỉ định nút.
Ví dụ
Bạn có thể thử chạy đoạn mã sau để tìm hiểu cách lấy thuộc tính 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>