我有一个带有部分的侧边栏,每个部分都有章节,其中有子章节。使用复选框将章节和子章节标记为已读。我想做的是:
每当我将章节复选框标记为已选中时,在其标签上加上一行,并且所有子章节复选框也会被选中。
每当我取消标记章节复选框时,通行消失,所有子章节复选框都未标记,并且它们的通行消失。
我一直试图让它工作一段时间但没有成功,任何帮助将不胜感激。谢谢。
$(".chapter-ended").live "change", ->
id = $(this).attr("id")
isChecked = $(this).attr("checked")
if(isChecked)
$(this).closest('li').css "text-decoration", "line-through"
else
$(this).closest('li').css "text-decoration", "none"
$(".subchapter-ended").live "change", ->
id = $(this).attr("id")
isChecked = $(this).attr("checked")
if(isChecked)
$(this).closest('li').css "text-decoration", "line-through"
else
$(this).closest('li').css "text-decoration", "none"