IE11中的matchMedia错误

Error in IE11 for matchMedia

本文关键字:错误 matchMedia 中的 IE11      更新时间:2023-09-26

我正在运行一段代码,其中包括以下javascript行:

  var mql = window.matchMedia("screen and (max-width: 440px)")

在所有浏览器中都可以正常运行,但在IE11中会显示错误

Object doesn't support property or method 'matchMedia'

我该如何解决这个问题?

你必须添加matchMedia.js (https://github.com/paulirish/matchMedia.js/)到你的项目.

在IE9的窗口中。matchMedia'是未定义的,因此您必须将支持的medialistener添加到文档中。matchMedia polyfill将适用于你的问题!!谢谢. . ! !

我希望在IE11中它也能工作…!!

https://github.com/paulirish/matchMedia.js/