話不多說,請看代碼
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title></head><body> <form> <label for="apple">蘋果</label> <input type="checkbox" name="apple"> <label for="banana">香蕉</label> <input type="checkbox" name="banana"> <label for="orange">橘子</label> <input type="checkbox" name="orange"> <input type="button" value="全選" onclick="allPick()"> <input type="button" value="全不選" onclick="unAllPick()"> <input type="button" value="反轉(zhuǎn)" onclick="inverserPick()"> </form> <script src="http://cdn.bootcss.com/jquery/3.1.1/jquery.min.js"></script> <script> // 全選 function allPick() { $("[type=checkbox]:checkbox").each(function () { this.checked = true; }) } // 全不選 function unAllPick() { $("[type=checkbox]:checkbox").each(function () { this.checked = false; }) } // 反轉(zhuǎn) function inverserPick() { $("[type=checkbox]:checkbox").each(function () { this.checked = !this.checked; }) } </script></body></html>以上就是本文的全部內(nèi)容,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時也希望多多支持武林網(wǎng)!
新聞熱點(diǎn)
疑難解答