Showing
1 changed file
with
5 additions
and
2 deletions
@@ -177,6 +177,8 @@ plusstar = { | @@ -177,6 +177,8 @@ plusstar = { | ||
177 | tip.show('没有更多内容了'); | 177 | tip.show('没有更多内容了'); |
178 | return true; | 178 | return true; |
179 | } | 179 | } |
180 | + //记录切换tab位置 | ||
181 | + $(document).scrollTop(window.cookie(code) || 0); | ||
180 | 182 | ||
181 | that.resInit(); | 183 | that.resInit(); |
182 | 184 | ||
@@ -272,9 +274,10 @@ plusstar = { | @@ -272,9 +274,10 @@ plusstar = { | ||
272 | 274 | ||
273 | scrollFn = debounce(function() { | 275 | scrollFn = debounce(function() { |
274 | scrollTop = $(document).scrollTop(); | 276 | scrollTop = $(document).scrollTop(); |
275 | - | 277 | + //保留滑动位置,产品要求 |
278 | + window.setCookie(plusstar.common.codeDefault, $(this).scrollTop()); | ||
276 | // 当scroll到最后一列商品的高度后继续请求下一页数据 | 279 | // 当scroll到最后一列商品的高度后继续请求下一页数据 |
277 | - if (400 + scrollTop >= $(document).height() - windowHeight) { | 280 | + if (300 + scrollTop >= $(document).height() - windowHeight) { |
278 | plusstar.goodsList(); | 281 | plusstar.goodsList(); |
279 | } | 282 | } |
280 | 283 |
-
Please register or login to post a comment