oninput 事件
页面下方有更多实例。
定义和用法
oninput 事件在元素获得用户输入时发生。
当 <input> 或 <textarea> 元素的值发生改变时,会发生此事件。
提示:此事件类似于 onchange 事件。 不同之处在于 oninput 事件在元素值改变后立即发生,而 onchange 在元素失去焦点,且内容发生改变后发生。另一个区别是 onchange 事件也适用于 <select> 元素。
浏览器支持
表中的数字表示支持该事件的第一个浏览器版本。
事件 | |||||
---|---|---|---|---|---|
oninput | Yes | 9.0 | 4.0 | 5.0 | Yes |
语法
注释: Internet Explorer 8 或更早的版本不支持 addEventListener() 方法。
技术细节
是否支持冒泡: | Yes |
---|---|
是否支持取消: | No |
事件类型: | Event, InputEvent |
支持的 HTML 标签: | <input type="color">, <input type="date">, <input type="datetime">, <input type="email">, <input type="month">, <input type="number">, <input type="password">, <input type="range">, <input type="search">, <input type="tel">, <input type="text">, <input type="time">, <input type="url">, <input type="week"> and <textarea> |
DOM 版本: | Level 3 Events |