微信返回上一页停留在上次点击的位置
$(function(){
var value = ("list_id");
if(value !== null && value !== undefined && value !== ''){
setTimeout(function(){
var h = ("scrolltop_id");
$(document).scrollTop(h);
},500)
}
$(document).on('touchstart',function(evt){
var scroll = $(this).scrollTop();
("scrolltop_id", scroll);
})
var storage_html = $('#grid').html();
("list_id", storage_html);
})