作者文章

Chris Coyier

创始人、作者、设计师、垃圾邮件删除者、邮件个性化设置

文章 修复 Windows Phone 8 上 IE 10 的视口 的直达链接

修复 Windows Phone 8 上 IE 10 的视口

(function() {
  if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
    var msViewportStyle = document.createElement("style");
    msViewportStyle.appendChild(
      document.createTextNode("@-ms-viewport{width:auto!important}")
    );
    document.getElementsByTagName("head")[0].appendChild(msViewportStyle);
  }
})();

简要背景

为了让 IE 10(桌面版)在其新的“捕捉模式”下工作,你需要使用这个

@-ms-viewport {
  width: device-width;
}

但是……