用户在 HTML 中的搜索字段中书写内容时执行脚本?
在 HTML 中使用 onsearch 属性,以便当用户在搜索字段中书写内容并按 ENTER 或 x 时执行脚本。
示例
你可以尝试运行以下代码来实现 onsearch 属性 −
<!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>
广告