MediaQueryList.addListener() - Web API 接口参考 编辑
MediaQueryList
接口的addListener()
方法向MediaQueryListener
添加一个侦听器,该侦听器将运行自定义回调函数以响应媒体查询状态的更改。
从本质上讲,这是EventTarget.addEventListener()
的别名,用于向后兼容。 较旧的浏览器应使用addListener
而不是addEventListener
,因为MediaQueryList仅从较新的浏览器中的EventTarget继承。
语法
MediaQueryList.addListener(func)
参数
- func
- 表示您要在媒体查询状态更改时运行的回调函数的函数或函数引用。 在原始实现中,回调是一个非标准的
MediaQueryListListener
对象。 在新的实现中,使用标准事件机制,回调是标准函数,事件对象是MediaQueryListEvent
,它继承自Event
。
返回值
Void.
例子
var mql = window.matchMedia('(max-width: 600px)');
function screenTest(e) {
if (e.matches) {
/* the viewport is 600 pixels wide or less */
para.textContent = 'This is a narrow screen — less than 600px wide.';
document.body.style.backgroundColor = 'red';
} else {
/* the viewport is more than than 600 pixels wide */
para.textContent = 'This is a wide screen — more than 600px wide.';
document.body.style.backgroundColor = 'blue';
}
}
mql.addListener(screenTest);
规范
Specification | Status | Comment |
---|---|---|
CSS Object Model (CSSOM) View Module addListener | Working Draft | Initial definition |
浏览器兼容性
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.参见
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论