点击more
链接后,它会重定向到其父类别页面。
$('div.sub-menu').each(function(){
var max = 8
if ($(this).find("li").length > max) {
$(this).find('li:gt('+max+')').hide();
$(this).find('li:eq('+max+')').after(
$('<li class="more">More >></li>').click( function(){
/*$(this).siblings().show();*/
/* $('ul.child').children().show(); */
/* $(this).remove();*/
})
); } });
请提供任何解决方案,这是网址http://peachvitamins.com/,这很容易理解我想说的内容。
答案 0 :(得分:1)
这是:
$('.sub-menu').each(function(){
var max = 8
if ($(this).find("li").length > max) {
$(this).find('li:gt('+max+')').hide();
$(this).find('li:eq('+max+')').after(
$('<li class="more">More >></li>').click( function(){
location.href=$(this).parent().parent().prev().attr('href');
/*$(this).siblings().show();
$('ul.child').children().show();
$(this).remove();*/
})
);
}
});