【发布时间】:2011-07-31 04:13:31
【问题描述】:
当用户在搜索输入字段(在 webkit 浏览器中)单击 X 以取消搜索或清除文本时会触发什么事件?
提供有关restyling the button 和other custom events 的信息,但不使用此按钮。
【问题讨论】:
标签: html dom search dom-events
当用户在搜索输入字段(在 webkit 浏览器中)单击 X 以取消搜索或清除文本时会触发什么事件?
提供有关restyling the button 和other custom events 的信息,但不使用此按钮。
【问题讨论】:
标签: html dom search dom-events
在提交搜索输入和用户清除搜索时都会触发 onsearch 事件。
<input type=search onsearch="javascript:alert('SEARCH: ' + this.value);" />
【讨论】: