ここで見つけたものに基づいて、何時間もさまざまな方法を試してきましたが、役に立ちませんでした。誰かが私を正しい方向に向けることができますか? チェックボックスをオンまたはオフにするときに、確認をスローしてから、ユーザーの選択に基づいてチェックボックスをオンまたはオフにします。ありがとうございました!
$('input:checkbox').click(function(){
var checked = $("input:checked").length;
if (checked == 0){
if(confirm('Are you sure you want to discontinue this program?')){
(':checkbox:checked').removeAttr('checked');
}
} else
{
if(confirm('Are you sure you want to resume use of this program?'))
(':checkbox:checked').attr('checked');
}
HTML
<table>
<tr>
<td><input name="input" type="checkbox" value="" /></td>
<td>Because We Care</td>
</tr>
<tr>
<td><input name="" type="checkbox" value="" /></td>
<td>Some Unused Program</td>
</tr>