是否可以通过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
}
}
}