码迷,mamicode.com
首页 > 其他好文 > 详细

IE中iframe兼容性问题

时间:2014-05-06 13:57:59      阅读:1016      评论:0      收藏:0      [点我收藏+]

标签:style   color   width   strong   html   rgb   

      在使用iframe的时候,有时候想要让调用的iframe框架里面的不显示白背景,让它变得透明,在firefox是透明的,但是在IE浏览器却不透明。

      这个其实比较容易解决,只需要增加一个属性即可。

      就是在iframe标签中加入属性allowtransparency="true"

      <iframe src="weste.html" id="rss" width="90%" height="200" scrolling="no" frameborder="0" allowtransparency="true"></iframe>

       我看到网上有些写的还要在iframe调用的页面body中加入style="background-color:transparent",这个其实在IE6和以上版本的浏览器是不需要的,这个对应只是在IE5.5浏览器才需要。但是一定要注意再页面中千万不能加入任何背景或者背景色,这样才能实现出透明效果。

       如果被调用的页面时我们不能控制的,可以使用:IFRAME.contentWindow.documnet.body.backgroundColor="transparent"来使其透明。

 

IE中iframe兼容性问题,布布扣,bubuko.com

IE中iframe兼容性问题

标签:style   color   width   strong   html   rgb   

原文地址:http://www.cnblogs.com/hyaaon/p/3710376.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!