1
當單擊more
鏈接時,它將重定向到其父類別頁面。使用頂級菜單的jquery獲取當前類別ID opencart
$('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/,那將是很容易明白我想說什麼。
非常感謝你,它的做工精細 – geetika
絕對值得一+1。 – dreamcrash