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

รันสคริปต์เมื่อผู้ใช้เขียนบางสิ่งในช่องค้นหาใน HTML หรือไม่


ใช้ การค้นหา แอตทริบิวต์ใน HTML เพื่อรันสคริปต์เมื่อผู้ใช้เขียนในช่องค้นหาและกด ENTER หรือ x

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน การค้นหา แอตทริบิวต์ −

<!DOCTYPE html>
<html>
   <body>
      <p>Search something and press ENTER.</p>
      <input type = "search" id="inputID" onsearch = "display()">
      <p><strong>Note:</strong> It won' work in Internet Explorer and Firefox.</p>
      <p id="test"></p>
      <script>
         function display() {
         var a = document.getElementById("inputID");
         document.getElementById("test").innerHTML = "Searched for - " + a.value;
         }
      </script>
   </body>
</html>