html5搜索输入事件

jmi*_*loy 8 search html5 javascript-events

当用户在搜索输入字段(在webkit浏览器中)单击X以取消搜索或清除文本时,会触发什么事件?

有关重新设置按钮其他自定义事件的信息,但不能使用此按钮.

jmi*_*loy 12

在提交搜索输入和用户清除搜索时都会触发onsearch事件.

<input type=search onsearch="javascript:alert('SEARCH: ' + this.value);" />
Run Code Online (Sandbox Code Playgroud)

  • 当用户清除搜索时,IE中似乎不会触发此事件. (2认同)