Home >Web Front-end >JS Tutorial >How to implement batch selection and inverse selection of check boxes with jQuery_jquery

How to implement batch selection and inverse selection of check boxes with jQuery_jquery

WBOY
WBOYOriginal
2016-05-16 15:54:231257browse

The example in this article describes how jQuery implements batch selection and deselection of check boxes. Share it with everyone for your reference. The specific implementation method is as follows:

function selectAll(){
 $('input[type|=checkbox]').attr('checked','checked');
}
function cancelAll(){
 $('input[type|=checkbox]').removeAttr('checked');
}

I hope this article will be helpful to everyone’s jQuery programming.

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