Home  >  Article  >  Web Front-end  >  How to use jquery to implement select all and unselect all functions

How to use jquery to implement select all and unselect all functions

coldplay.xixi
coldplay.xixiOriginal
2020-12-07 11:02:149652browse

How to use jquery to implement the select all and unselect functions: first introduce the jquery library and set the loading function of jquery; then obtain the elements of the all-select box based on the id, and bind the click to the all-select box Event; finally get the multi-select box whose class attribute value is checkOne.

How to use jquery to implement select all and unselect all functions

The operating environment of this tutorial: windows7 system, jquery3.2.1 version, Dell G3 computer. This method is suitable for all brands of computers.

Recommended: jquery video tutorial

How to use jquery to implement the select all and unselect functions:

1. Create an html, and then add the code as shown below in the body tag, mainly to include multi-select boxes in a table.

How to use jquery to implement select all and unselect all functions

#2. Then the first thing is to introduce the jquery library. Pay attention to the way of jquery library: <script src="js/jquery-1.8.3.js"></script> cannot be written as

<script src="js/jquery-1.8.3.js"></script>This way. Otherwise it is invalid! You can try the difference between the two.

html5 does not need to add type="text/javascript"

How to use jquery to implement select all and unselect all functions

3, and then there is a jquery loading function. The loading function is jquery's standard configuration. The following method is relatively abbreviated.

How to use jquery to implement select all and unselect all functions

#4. Next, get the elements of the all-select box based on the id, and then bind the click event to the all-select box.

How to use jquery to implement select all and unselect all functions

5. Complete in the click event method: Get the multi-select box whose class attribute value is checkOne; then use the prop (property, value) method to set the checked attribute Set it to be the same as checked in the Select All/Uncheck All box.

How to use jquery to implement select all and unselect all functions

#6. The above steps have completed the use of jquery to implement the functions of selecting all and not selecting all. We run this html through the browser to see the effect as follows.

How to use jquery to implement select all and unselect all functions

Related learning recommendations: js video tutorial

The above is the detailed content of How to use jquery to implement select all and unselect all functions. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn