首页 > 网站 > 建站经验 > 正文

一种解决方维购物分享系统逛街页卡的最简单办

2024-04-25 20:44:44
字体:
来源:转载
供稿:网友
找到文件

/tpl/pink2/page/book/book_index.htm

删除下列代码(也就是else{}里的注释了即可,154-173行)
$(".share_col").each(function(i){
   $(this).append(rowHtml);
  });
  $(window).scroll(function(){
   $(".share_col").each(function(i){
    $('.empty_row .bd',this).height(0);
    if($(this).height() > colHeight)
    {
     colIndex = i;
     colHeight = $(this).height();
    }
   });
   
   $(".share_col").each(function(i){
    if(i != colIndex)
    {
     $('.empty_row .bd',this).height(colHeight - $(this).height());
    }
   });
  });
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表