标签: javascript html internet-explorer iframe object-tag
我正在创建一个网站,我的HTML将嵌入到我无法控制的页面中。我希望我的页面能够以IE9标准模式呈现。为了做到这一点,我让我的第一页使用embed标签嵌入第二页,以便允许第二帧处于标准模式。这个技巧在这里讨论:
http://stackoverflow.com/questions/2332125/can-an-iframe-content-be-rendered-in-standards-mode-when-the-parent-is-rendered
不幸的是,根据Internet Explorer的版本,这会导致额外的HEAD请求或额外的GET请求。这将在这里讨论:
https://superuser.com/questions/560647/ie10-unexpectedly-sends-a-head-request-for-pdf-what-has-changed
我想避免这些额外的请求。有谁知道这样做的方法?
感谢。