onsearch 事件對於搜尋很有用,即使用者在輸入元素中按 ENTER 或「x」鍵。 的類型是search,因為它是供使用者搜尋的。 Internet Explorer、Firefox 和 Opera 不支援 onsearch 事件。
您可以嘗試執行以下程式碼來了解如何在 JavaScript 中實作 onsearch 事件。
<!DOCTYPE html> <html> <body> <p>Write what you want to search below and press "ENTER".</p> <input type = "search" id = "newInput" onsearch = "searchFunc()"> <script> function searchFunc() { var a = document.getElementById("newInput"); document.write("Searched = " + a.value); } </script> </body> </html>
以上是在JavaScript中,onsearch事件的用法是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!