使用jquery实现全选功能的方法:1.新建html项目,引入jquery;2.创建input多选框;3.添加button按钮,绑定onclick点击事件;4.通过标签名获取input对象,使用prop()方法实现全选;
具体步骤如下:
1.首先,新建一个html项目,并在项目中引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>
2.引入jquery后,在项目中创建input多选框,用于测试;
<input type="checkbox" /><input type="checkbox" />
<input type="checkbox" />
3.input多选框创建好后,添加一个button按钮,并绑定onclick点击事件,用于点击全选;
<button onClick="set()"><button>
4.最后,按钮添加好后,在点击事件中通过标签名获取input对象,在使用prop()方法将checked属性设置为true即可实现全选;
fucntion set(){
$("input").prop("checked",true);
}