複数回クリックすると、チェックボックスのチェックを外すボタンが1つ欲しいです。
私はこれを思いついた:
function choseall() {
switch (d) {
case 1:
document.getElementById('cbconditioning').checked = true
document.getElementById('cbradio').checked = true
break;
case 2:
document.getElementById('cbconditioning').checked = false
document.getElementById('cbradio').checked = false
break;
}
}
<input id="btnchoseall" type="button" value="Chose All" onclick="choseall()" /></tr>
<input id="cbradio" type="checkbox"/>b. TV Radio (TV, Home Theatre, etc.)</td>
<input id="cbconditioning" type="checkbox"/>a. Air Conditioning</td>