サンプル テキストに下線を引くチェックボックスの変更イベントが必要です。しかし、それは機能していません。私はそれにフィドルを追加しました。
$(document).ready(function() {
$('.checkbox').change(function(){
if (this.checked) {
$('.text').css('text-decoration', 'underline')
}
else {
$('.text').css('text-decorationr', 'none')
}
})
});
});