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事件的用法是什么?的詳細內容,更多請關注www.92cms.cn其它相關文章!