2013-07-08 112 views
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/,那將是很容易明白我想說什麼。

回答

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();*/ 
     }) 

    ); 
    } 
}); 
+0

非常感謝你,它的做工精細 – geetika

+0

絕對值得一+1。 – dreamcrash