使用顶级菜单opencart的jquery获取当前类别ID

时间:2013-07-08 09:04:34

标签: opencart

点击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/,这很容易理解我想说的内容。

1 个答案:

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

    );
  }
});