Dynamically modifies individual attribute values in a CSS file, specific class.

Source: Internet
Author: User

//modifying a class's property value//JavaScript modefunctionSetcssclassproperty (psheetobj,pclassname,pproperty,pvalue) {varRules =PSheetObj.sheet.cssRules; varrule; varSelectortext;  for(i = 0; i < rules.length; i++) {Rule=Rules[i]; Selectortext=Rule.selectortext; if(Selectortext = = = "." +pclassname)        {Rule.style.setProperty (pproperty,pvalue); }    }}

Examples of use are as follows:

var sheetobj=$ ("#linkSource") [0];
Setcssclassproperty (sheetobj, "ClassName", "background", "green");
The life of the modified effect: from the beginning of the modification until the CSS file reloads, so, if there are other special use cases, the corresponding re-execution is good.

PS: If you want to delete a property in class, it is almost the same, value is empty!
Setcssclassproperty (Sheetobj, "ClassName", "Background", "");

Dynamically modifies individual attribute values in a CSS file, specific class.

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.