首頁 > web前端 > html教學 > 當使用者在 HTML 搜尋欄位中寫入內容時執行腳本?

當使用者在 HTML 搜尋欄位中寫入內容時執行腳本?

王林
發布: 2023-08-28 13:21:07
轉載
1090 人瀏覽過

当用户在 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&#39; 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>
登入後複製

以上是當使用者在 HTML 搜尋欄位中寫入內容時執行腳本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板