使用js操作css屬性和css中的寫法不同

來源:互聯網
上載者:User

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 是javascript的保留字,那怎麼在js中書寫樣式表中的 float 呢?
我們不能直接使用obj.style.float來使用,這樣操作是無效的。
其正確的使用方法是為:IE:obj.style.styleFloat,其他瀏覽器Mozilla(gecko),ff等用 styleFloat:obj.style.cssFloat。
給個例子讓大家好理解:
<div onclick="alert(this.style.float);this.style.float=’left’;alert(this.style.float);">測試1</div>
<div onclick="alert(this.style.float);if(this.style.cssFloat) {this.style.cssFloat=’left’;}else{this.style.styleFloat=’left’;}alert(this.style.float);"& gt;測試2</div>

相關文章

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.