30
07
2010
ie6 背景图片多次请求 bug
bigCat Posted in CSS - 0 Comment<!--[if IE 6]>
<script type="text/javascript">
// <![CDATA[
try{
document.execCommand("BackgroundImageCache", false, true);
}
catch(e){}
// ]]>
</script>
<![endif]-->
<!--[if IE 6]>
<script type="text/javascript">
// <![CDATA[
try{
document.execCommand("BackgroundImageCache", false, true);
}
catch(e){}
// ]]>
</script>
<![endif]-->
isIE6 = $.browser.msie && (parseInt($.browser.version) == 6);
不知道是不是这么玩的...
ie6下iframe宽度100%
实际宽度为100%+iframe本身滚动条宽度,但是定宽就不会算上滚动条
暂时用JS设置宽度或高度,就恢复正常了,奶奶的
.Popup {filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='bg.png',sizingMethod='scale');}