Sử dụng onsearch thuộc tính trong HTML để thực thi tập lệnh khi người dùng viết vào trường tìm kiếm và nhấn ENTER hoặc x.
Ví dụ
Bạn có thể thử chạy mã sau để triển khai onsearch thuộc tính -
<!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>