如何在网页上动态生成的内容上修复Google抓取

时间:2019-06-15 12:11:15

标签: jquery ajax google-crawlers

当用户滚动浏览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();
           } 
        }
    });

0 个答案:

没有答案