使用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);
}