Special Writing of CSS attribute float in Javascript

Source: Internet
Author: User

This article briefly introduces the special float Writing Method of css in Javascript. Recently, a program was used to set the float attribute of css in js, and thought it was the same as the usual writing method, first, let's take a look at how to use js to operate css attributes.

Special Writing of css float in Javascript

Recently, I used a program to set the float attribute of css in js. I thought it was the same as the usual method. It wasn't. First, let's take a look at the method of operating css attributes in js:

Different from css:

1. for css attributes without hyphens, you can directly use style. attribute name.

For example, obj. style. margin, obj. style. width, obj. style. left, obj. style. position, etc.

2. for css attributes that contain dashes, remove each dashes and replace the first character after each dashes with uppercase letters.

For example, obj. style. marginTop, obj. style. borderLeftWidth, obj. style. zIndex, obj. style. fontFamily, etc.

I think most front-end developers are familiar with this rule. It is really special to use js with a special attribute in css.

Because float is a reserved word in Javascript, how can I write float in a style sheet in js?

We cannot directly use obj. style. float. This operation is invalid.

The correct method is: IE: obj. style. styleFloat, other browsers Mozilla (gecko), ff, and other styleFloat: obj.style.css Float.

Let's give an example for your understanding:

 
 
  1. <Div onclick = "alert (this. style. float );
  2. This. style. float = 'left ';
  3. Alert (this. style. float); "> Test 1 </div>
  4. <Div onclick = "alert (this. style. float );
  5. If(this.style.cssfloat?#this.style.css Float = 'left ';
  6. } Else {this. style. styleFloat = 'left ';
  7. } Alert (this. style. float); "> Test 2 </div>
  8.  

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.