change - 事件参考 编辑
当用户更改<input>
、<select>
和<textarea>
元素的值并提交这个更改时,change
事件在这些元素上触发。和 input
事件不一样,change
事件并不是每次元素的 value
改变时都会触发。
冒泡 | 是 |
---|---|
可取消 | 否 |
接口 | Event |
事件处理程序属性 | onchange |
基于表单元素的类型和用户对标签的操作的不同,change
事件触发的时机也不同:
- 当元素是
:checked
状态时(通过点击或者使用键盘),见于<input type="radio">
和<input type="checkbox">
; - 当用户显式提交改变时(例如:点击了
<select>
中的一个选项,从<input type="date">
标签选择了一个日期,通过<input type="file">
标签上传了一个文件等); - 当标签的值被修改并且失去焦点后,但未提交时(例如:对
<textarea>
或者<input type="text">
的值进行编辑后)。
示例
<select> 元素
HTML
<label>Choose an ice cream flavor: <select class="ice-cream" name="ice-cream"> <option value="">Select One …</option> <option value="chocolate">Chocolate</option> <option value="sardine">Sardine</option> <option value="vanilla">Vanilla</option> </select> </label> <div class="result"></div>
body { display: grid; grid-template-areas: "select result"; } select { grid-area: select; } .result { grid-area: result; }
JavaScript
const selectElement = document.querySelector('.ice-cream'); selectElement.addEventListener('change', (event) => { const result = document.querySelector('.result'); result.textContent = `You like ${event.target.value}`; });
结果
文本输入元素
对于一些元素,包括 <input type="text">
,change
事件在控件失去焦点前都不会触发。试一下在下面的输入框输入一些文字,然后点击输入框外的地方来触发事件。
HTML
<input placeholder="Enter some text" name="name"/> <p id="log"></p>
JavaScript
const input = document.querySelector('input'); const log = document.getElementById('log'); input.addEventListener('change', updateValue); function updateValue(e) { log.textContent = e.target.value; }
结果
浏览器兼容性
BCD tables only load in the browser
对于一些特定类型的交互是否要触发 change
事件,不同浏览器的意见并不总是一致的。例如在 <select>
元素中使用键盘导航在 Gecko 中不会触发 change
事件,直到用户按下 Enter 键或将焦点从 <select>
上移走(参见 bug 126379)。但从 Firefox 63(Quantum)开始,这个行为在已经在主流浏览器中达成一致。
参见
NetworkInformation.connection
fires the change
event when the connection information changes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论