The following will bring you a js method to implement (select all) multi-select buttons [with examples]. I think the content is quite good, so I would like to share it with you now and give it as a reference.
The first type, select all:
<html> <head> <title>复选框checked属性</title> <script language="JavaScript" type="text/javascript"> function changeState(isChecked) { var chk_list=document.getElementsByTagName("input"); for(var i=0;i<chk_list.length;i++) { if(chk_list[i].type=="checkbox") { chk_list[i].checked=isChecked; } } } </script> </head> <body> <h1>请选择你的爱好</h1> <form name="myForm1"> <input type="checkbox" name="cb1" checked>看书<br> <input type="checkbox" name="cb2" checked>上网<br> <input type="checkbox" name="cb3">游戏<br> </form> <hr> <form name="myForm2"> <input type="checkbox" name="cb" onclick="changeState(this.checked)">全选 </form> </body> </html>
The effect is as follows:
Second, select the specified one.
The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
JQuery and canvas realize the flat throwing and color dynamic transformation effect
jQuery lower right corner rotation Implementation of ring menu special effects
The above is the detailed content of How to implement (select all) multi-select button in js. For more information, please follow other related articles on the PHP Chinese website!