javascript css styleFloat和cssFloat
作者:
在写js操作css的过程中发现float属性在IE和firefox下对应的js脚本是不一样的,IE下对应得是 styleFloat,firefox,chorme,safari下对应的是cssFloat,可用in运算符去检测style是否包含此属性。
下面是兼容性代码
LTFunction.setFloatStyle=function(obj,style)
{
var sty=obj.style;
if('cssFloat' in sty){
obj.style.cssFloat=style;
}else if('styleFloat' in sty){
obj.style.styleFloat=style;
}else{
throw 'set float style:'+style+'error.';
}
}
复制代码 代码如下:
LTFunction.setFloatStyle=function(obj,style)
{
var sty=obj.style;
if('cssFloat' in sty){
obj.style.cssFloat=style;
}else if('styleFloat' in sty){
obj.style.styleFloat=style;
}else{
throw 'set float style:'+style+'error.';
}
}
您可能感兴趣的文章:
- javascript css float属性的特殊写法
- css 跨浏览器实现float:center
- CSS中Float(浮动)相关技巧文章
- javascript下操作css的float属性的特殊写法
- css position: absolute、relative详解
- CSS定位中Positoin、absolute、Relative的一些研究
- relative absolute无法冲破的等级问题解决
- Div CSS absolute与relative的区别小结
- position:relative/absolute无法冲破的等级
- 解决rs.absolutepage=-1的问题
- 详细分析css float 属性以及position:absolute 的区别