Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะค้นหาข้อความที่มองเห็นบนปุ่มด้วย JavaScript ได้อย่างไร?


หากต้องการค้นหาข้อความที่มองเห็นได้บนปุ่มใน JavaScript ให้ใช้ innerHTML ทรัพย์สิน

ตัวอย่าง

คุณสามารถลองใช้รหัสต่อไปนี้เพื่อเรียนรู้วิธีแสดงข้อความที่มองเห็นได้ -

<!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>