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