GlobalEventHandlers.oninput - Web API 接口参考 编辑

GlobalEventHandlersmixin的oninput属性是EventHandler,它处理<input><select>和 <textarea> 元素上的 input 事件。 它还会在contenteditable 或 designMode打开的元素上处理这些事件。

注意:与oninput不同的是, onchange 事件处理程序不一定会针对元素值的每次更改而调用。

语法

target.oninput = functionRef;

functionRef是一个函数名或函数表达式。该函数接收InputEvent 对象作为唯一参数。

示例

HTML

<input type="text" placeholder="Type something here to see its length."size="50"> <p id="log"></p>

JavaScript

let input = document.querySelector('input');
let log =document.getElementById('log');
input.oninput = handleInput;
function handleInput(e) {
  log.textContent = `The field's value is${e.target.value.length} character(s) long.`;
}

结果

规范

SpecificationStatusComment
HTML Living Standard
oninput
Living StandardInitial definition

浏览器兼容性

BCD tables only load in the browser

The following links discuss compatibility issues and fixes that may be helpful when working with older browsers:

参见

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:93 次

字数:4795

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文