用户在 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>

更新日期: 03-Mar-2020

151 个浏览量

开启您的职业生涯

完成课程,获得认证

立刻开始
广告