functiondosearch(keyword){
$(‘#keyword‘).val(keyword);
getContent= get_next_page(1,<?php echo isset($_GET[‘cate_id‘])?$_GET[‘cate_id‘]:‘1‘;?>,1);
}functionselect_all(){
get_next_page(1,<?php echo isset($_GET[‘cate_id‘])?$_GET[‘cate_id‘]:‘1‘;?>,1);
}
$(function(){
get_next_page(1);
})var control=true;
$(window).on("scroll",function(){if($(document).scrollTop()+$(window).height()>=$(document).height()){if(control){
$(".static-box").html("
正在加载...
");$(document).scrollTop($(document).scrollTop()+100);
get_next_page();
}
}
});
get_next_page= function(getpage,get_cate_id,setempty) {if(get_cate_id){
$(‘#cate_id‘).val(get_cate_id)
}var cate_id = $(‘#cate_id‘).val();var b_id = $(‘#b_id‘).val();var store_id = $(‘#store_id‘).val();var key = $(‘#key‘).val();var order = $(‘#order‘).val();var keyword = $(‘#keyword‘).val();if(getpage){
page= 1;
}else{var page = parseInt($(‘.order_page:last‘).val());
page+= 1;
}var url = ‘index.php?act=mall&op=index&cate_id=‘+cate_id+‘&store_id=‘+store_id+‘&b_id=‘+b_id+‘&key=‘+key+‘&order=‘+order+‘&getact=next_page&curpage=‘+page+‘&keyword=‘+keyword;
control=false;
$.ajax({
type:‘GET‘,
url:url,
data:‘‘,
dataType:‘html‘,
success:function(data){if(!data || data=="" || data == "clear"){
control=false;if(data == ‘clear‘){
$(".minwrap").empty();
}
$(".static-box").html("
没有更多数据了...
");setTimeout(function(){
$(".static-box").html("");
},1000)return false;
}
$(".order_page").remove();if(setempty == 1){
$(".minwrap").html(data);
$(‘html, body‘).animate({scrollTop:0}, ‘slow‘);
}else{
$(".minwrap").append(data);
}
$("img.lazy").show().lazyload({
effect :"fadeIn",
threshold :200});
control=true;
}
});
}