6.3 練習
練習:checkbox 全選
提供 html:
<input type="checkbox" id="check_all"><label for="check_all">全選</label>
<hr>
<input type="checkbox" class="item" id="option1"> <label for="option1">選項一</label>
<input type="checkbox" class="item" id="option2"> <label for="option2">選項二</label>
<input type="checkbox" class="item" id="option3"> <label for="option3">選項三</label>
撰寫 JS,完成如下影片示意:
參考作法: