javascript下操作css的float屬性的特殊寫法

來源:互聯網
上載者:User

使用js操作css屬性的寫法是有一定的規律的:

1、對於沒有中劃線的css屬性一般直接使用style.屬性名稱即可。
如:obj.style.margin,obj.style.width,obj.style.left,obj.style.position等。

2、對於含有中劃線的css屬性,將每個中劃線去掉並將每個中劃線後的第一個字元換成大寫即可。
如:obj.style.marginTop,obj.style.borderLeftWidth,obj.style.zIndex,obj.style.fontFamily等。

這個規律我想大多數的前端開發人員也都熟知。對在css中有一個特殊的屬性其js使用方法確比較特殊。
這個特殊的屬性就是:float。我們不能直接使用obj.style.float來使用,這樣操作是無效的。

其正確的使用方法是為:IE:obj.style.styleFloat,其他瀏覽器:obj.style.cssFloat。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.