从IE5.5+就支持iframe框架的背景透明。通过使用allowtransparency和background-color来设置iframe框架的透明效果,代码如下:
1 <iframe src="a.html" allowtransparency="true" style="background-color=transparent" frameborder="0" width="300" height="200" scrolling="no"> 2 </iframe>
说明:
iframe对象的allowTransparency属性应用,在该属性设置为true并且iframe所载加页的背景颜色设置为transparent(透明)时iframe将透明化。 使用它可以兼容低版本IE。
background-color是常规的设置背景颜色, transparent的属性代表背景透明。
懂了不, 嘿嘿...