您好朋友以下是我的代码
HTML
<ul>
<li>
<div class="input"><input name="" type="checkbox" value="" id="a"/></div>
<div >Name of the survey goes here | 35 Points - <span>Begin Survey</span></div>
</li>
</ul>
jQuery
<script>
$(document).ready(function(){
$('#a').click(function(){
$(this).next('div').addClass('.check_clicked');
})
})
</script>
CSS
.check_clicked
{
text-decoration:line-through;
color:#b6a7a7;
}
我只想如果复选框值被选中,那么类.check_clicked
应该应用于下一个 div