区分window8中 ie10 window phone8

Internet Explorer 10 并没有对 屏幕的宽度视口(viewport)的宽度 进行区分

 
@-webkit-viewport   { device-width; }
@-moz-viewport      { device-width; }
@-ms-viewport       { device-width; }
@-o-viewport        { device-width; }
@viewport           { device-width; }
 
 
if (navigator.userAgent.match(/IEMobile/10.0/)) {
  var msViewportStyle = document.createElement('style')
  msViewportStyle.appendChild(
    document.createTextNode(
      '@-ms-viewport{auto!important}'
    )
  )
  document.querySelector('head').appendChild(msViewportStyle)
}
 
原文地址:https://www.cnblogs.com/chuangweili/p/5166432.html