我希望复选框更改事件来强调我的示例文本。但是它不起作用。我在里面加了一个小提琴。
$(document).ready(function() {
$('.checkbox').change(function(){
if (this.checked) {
$('.text').css('text-decoration', 'underline')
}
else {
$('.text').css('text-decorationr', 'none')
}
})
});
});