Home  >  Article  >  Web Front-end  >  jqueyr determines the selection of the checkbox group (sample code)_jquery

jqueyr determines the selection of the checkbox group (sample code)_jquery

WBOY
WBOYOriginal
2016-05-16 17:16:531035browse

html:

Copy code The code is as follows:


align="right">
                                                                                                    Approval                                                 >Disapprove
🎜>
Copy code


The code is as follows:

$(function () {
$(".checkboxListItem").change( //Teacher
function () {                                                                                                                                                                                  "checked", true);                                                                                                roval").attr(" checked", false); $("#slsa_noApproval").attr("checked", true); } }); });

Judge by value:




Copy code


The code is as follows:


var checkCheckbox = $(" #slsa_approval").attr("checked");
if (checkCheckbox == true) {
auditState = "3";
auditState = "4";
}

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