我附近的照相馆在哪里:安装了虎翼的DIY Bar后IFRAME在IE中无法正常显示

来源:百度文库 编辑:神马品牌网 时间:2024/05/12 10:06:13
用JS创建的IFRAME在安装了虎翼的DIY吧后,无法正常显示,哪位知道是怎么回事?

var a=document.createElement("IFRAME");
with(a)
{
id="smenu";
name="smenu";
frameBorder=0;
width="217px";
height="829px";
src="about:blank";//这里会根据需要设置正需要显示的文件
}
with(a.style)
{
position="absolute";//如果使用relative则可以显示,但位置就不对了,我要绝对定位到页面的left=760/top=0
height="829px";
width="217px";
top="0px";
left="760px";
display="block";
backgroundColor="red";
visibility="visible";
}
document.body.insertAdjacentElement("BeforeEnd",a);