当用户滚动浏览ajax时,我正在从sql表中获取内容。我需要知道Google搜寻器是否在网页上动态生成的Ajax内容上进行爬网,这是我用来从滚动jquery函数上的sql表中获取内容的脚本
jQuery.ajax({
url:ajaxurl,
type:"POST",
data:{
page:page,
action:"my_loadmore"
},
error:function(response){
console.log("error");
},
success:function(data){
if (data !== undefined ){
jQuery('button.myLoad').data('page',(page+1));
jQuery('#left-area').append(data);
}
else {
jQuery('button.myLoad').remove();
}
}
});