使用 Javascript 更改 IE 文档模式?
是否可以使用 Javascript 更改 IE 文档模式?我不会在这里讨论具体细节,但我正在与一个锁定的 Drupal 站点作斗争,该站点不允许我任何编辑主题文件的权限。显然,正确的做法是在头部写入一些内容,如下所示:
<meta http-equiv="X-UA-Compatible" content="IE=8">
但是,正如我提到的,我无法访问页面的该部分,所以我希望我可以使用 Javascript... 排序像这样:
document.getElementsByTagName('head')[0].appendChild('<meta http-equiv="X-UA-Compatible" content="IE=IEVersion">');
遗憾的是,这不起作用。
Is it possible to change the IE document mode with Javascript? I won't get into the nitty-gritty details here, but I'm fighting with a locked down Drupal site that will not allow me any acces to edit the theme files. Obviously, the correct thing to do would be to write something into the head, like this:
<meta http-equiv="X-UA-Compatible" content="IE=8">
But, as I mentioned, I have no access to that part of the page, so I'm hoping that I can use Javascript... sort of like this:
document.getElementsByTagName('head')[0].appendChild('<meta http-equiv="X-UA-Compatible" content="IE=IEVersion">');
Sadly, this doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这让你有点为难。这个怎么样?
That's a bit of a pickle you're in. What about this?