求教一个问题
$("li:gt(3):not(:last)").hide();
$('a').click(function(){
if($("a:contains('更多')")){
$(this).html("简化");
$("li").show(); }
else{
$("li:gt(3):not(:last)").hide();
$(this).html("更多"); }
}); 为什么这样不行呢,换一下 if($(this).html()=="更多"),就可以了呢?
$("li:gt(3):not(:last)").hide();
$('a').click(function(){
if($("a:contains('更多')")){
$(this).html("简化");
$("li").show(); }
else{
$("li:gt(3):not(:last)").hide();
$(this).html("更多"); }
}); 为什么这样不行呢,换一下 if($(this).html()=="更多"),就可以了呢?
2016-04-03
举报