Để tìm văn bản hiển thị trên một nút trong JavaScript, hãy sử dụng innerHTML tài sản.
Ví dụ
Bạn có thể thử chạy đoạn mã sau để tìm hiểu cách hiển thị văn bản có thể nhìn thấy -
<!DOCTYPE html> <html> <body> <form id = "myForm"> <button id = "btn" type = "button">My Button</button> </form> <script> var str = document.getElementById("btn").innerHTML; document.write("Button text: "+str); </script> </body> </html>