我尝试将 html 嵌入到无法在 IE 上显示的对象中。这是js代码
document.getElementById('one').innerHTML = '<'+'object id="foo" name="foo" type="text/html" data="'+which.href+'"><\/object>';
这是html
<div id="one"><object id="foo" name="foo" type="text/html" data="$jsurl/animate/right/ap2.html"></object></div>
该代码在其他浏览器上正确显示,但在 IE 上不能正确显示,并且 IFRAME 不是一个选项,因为我需要它透明才能覆盖在 div 之上。
需要知道如何在 IE 或任何其他选项上显示它?