我想使用 html5shiv 来支持 IE9,但我无法让它工作。我已经在头部安装了这个:
<!--[if IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
我需要支持 HTML5 Iframe 沙箱:
<iframe id="iframe" src="http://www.telegraaf.nl" sandbox="allow-scripts allow-forms allow-same-origin"></iframe>
iframe 中的网站将在 IE9 中分解 iframe,这意味着沙箱无法正常工作。我认为问题可能在于沙箱是 iframe 的属性而不是“样式方法/元素”。
所以基本上我需要一些建议。我还可以做些什么?是否有一个插件(jquery?javascript?)可以支持 IE 中的沙箱?