头闻号

葛宁云

护肤膏霜|洗面奶|沐浴液|唇膏|其他彩妆化学品|面膜

首页 > 新闻中心 > 科技常识:iframe框架在IE浏览器下将白色背景设为透明色
科技常识:iframe框架在IE浏览器下将白色背景设为透明色
发布时间:2024-10-06 19:18:11        浏览次数:1        返回列表

今天小编跟大家讲解下有关iframe框架在IE浏览器下将白色背景设为透明色 ,相信小伙伴们对这个话题应该有所关注吧,小编也收集到了有关iframe框架在IE浏览器下将白色背景设为透明色 的相关资料,希望小伙伴们看了有所帮助。

最近在做项目的过程中需要频繁的使用iframe画页面的层级框架 大部分浏览器是没有背景的 但是iframe在IE中默认是有一个白色的背景色的 当主背景色不是白色的时候 在这一部分会显得很突兀。帮助手册中给出了解决方案 即将iframe中的allowTransparent属性设置为true 即可。在帮助文档中也给出了相应的示例 示例如下: 复制代码代码如下: <BODY STYLE="background-color: red"> <Iframe ID="frame1"SRC="https://www.aidi.net.cn//web/transparentBody.htm"allowTransparency="true"> </Iframe> <Iframe ID="frame2"SRC="https://www.aidi.net.cn//web/transparentBody.htm"allowTransparency="true"STYLE="background-color: green"> </Iframe> <Iframe ID="frame3"SRC="https://www.aidi.net.cn//web/transparentBody.htm"> </Iframe> <Iframe ID="frame4"SRC="https://www.aidi.net.cn//web/transparentBody.htm"STYLE="background-color: green"> </Iframe> </BODY> 理论上 这样做就没问题了 但是呢IE好像反应不大 依旧还是有白色的背景。其实到了这一步 我们还需要在子页面的<body>标签添加<body bgColor="transparent"> 示例如下: http://img.blog.csdn.net/20140610165850968?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQva3VucGVuZ19tdWJhbw==/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center main.html主页面代码: 复制代码代码如下: <html> <head> <title></title> </head> <body style="background-color:blue;"> <table style="width:100%;border:0;height:100%;cellpadding:0;cellspacing:0"> <tr height="100%"> <td height="100%"width="30%"> <iframe id="test1"src="https://www.aidi.net.cn//web/test1.html"allowTransparency="true"width="100%"height="100%"></iframe></td> <td height="100%"width="40%"> <iframe id="test2"src="https://www.aidi.net.cn//web/test2.html"allowTransparency="true"width="100%"height="100%"></iframe></td> <td height="100%"width="30%"> <iframe id="test3"src="https://www.aidi.net.cn//web/test3.html"width="100%"height="100%"></iframe></td> </tr> </table> </body> </html> test1.html页面代码: 复制代码代码如下: <html> <head> <title></title> </head> <body bgcolor="transparent"> <h1>test1</h1> </body> </html> test2.html页面代码: 复制代码代码如下: <html> <head> <title></title> </head> <body> <h1>test2</h1> </body> </html> test3.html页面代码: 复制代码代码如下: <html> <head> <title></title> </head> <body> <h1>test3</h1> </body> </html> 这个小例子主要是iframe标签的allowTransparency属性应用 在该属性设置为true并且iframe所加载的子页面的<body>标签背景颜色设置为transparent(透明)时 iframe将透明化。 allowTransparency设置或获取对象是否可为透明。 bgColor 设置或获取对象的背景颜色。

来源:爱蒂网