How to modify, add, and delete class styles in js _ javascript skills

Source: Internet
Author: User
This article describes how to modify, add, and delete class styles in JavaScript. it is very useful to modify the className of a label, for more information about how to modify, add, and delete class styles in js, see the examples in this article. Share it with you for your reference. The specific analysis is as follows:

Common js front-end functions are implemented by modifying the className of tags.

The code is as follows:

The code is as follows:














Js implements class style modification, adding, and deletion
Product Code
Item renewal
Specification name
Select all Not all

Script
$ ('. Goods_sale_property'). click (function () {// separate a tag and click add class
If ($ (this). hasClass ('goods _ sale_property_checked ')){
$ (This). removeClass ('goods _ sale_property_checked ');
} Else {
$ (This). addClass ('goods _ sale_property_checked ');
}
});
Function selectAll () {// select all classes
$ ('. Goods_sale_property'). each (function (I ){
$ (This). addClass ('goods _ sale_property_checked ');
});
}
Function selectNotAll () {// select all to delete a class
$ ('. Goods_sale_property'). each (function (I ){
$ (This). removeClass ('goods _ sale_property_checked ');
});
}
Script

I hope this article will help you design javascript programs.

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.