$(document).ready(function (){
$("#newrecord1 tr:odd").addClass("odd");
$("#newrecord1 tr:odd(.odd)").find("li").hide();
$("#newrecord1 tr:not(.odd)").hide();
$("#newrecord1 tr:first-child").show();
$("#newrecord1 tr.odd").click(function (){
if ($(this).next("tr").css('display') === 'none'){
$(this).next("tr").show();
$(this).next("tr").find("li").slideDown("slow");
}
else {
$(this).next("tr").find("li").slideUp("slow",function(){
$(this).next("tr").hide();
});
}
})
})
在第 13 行$(this).next("tr").hide()
上,当 li 标签向上滑动时,代码行不起作用,它没有隐藏该行。