0

是否可以通过js更改文档模式?js 作为书签中的代码运行。

我能够更改元标记中的内容模式,但这实际上并没有使页面呈现任何不同。我需要能够运行在 IE8 中不起作用的 js 代码(即 getComputedStyle)。

var metas = document.getElementsByTagName("meta");
for (var i=0; i<metas.length;i++) {  
  if (metas[i].getAttribute("content") ) {
     if(metas[i].getAttribute("content")=="IE=8"){
        metas[i].setAttribute("content","IE=9"); // also tried IE=Edge
     }
  }
}
4

0 回答 0