网站建设的可行性分析报告,手机优化网站建设,wordpress作者信息插件,网站自己建设一淘模板 56admin.com 发现GoogleAdsense#xff08;谷歌广告联盟#xff09;国内加载慢拖网站速度怎么解决#xff1f;GoogleAdsense是谷歌旗下的站长广告联盟系统#xff0c;如果站长没有好的变现渠道#xff0c;挂谷歌联盟是最好的选择#xff08;日积月累#xff09…一淘模板 56admin.com 发现GoogleAdsense谷歌广告联盟国内加载慢拖网站速度怎么解决GoogleAdsense是谷歌旗下的站长广告联盟系统如果站长没有好的变现渠道挂谷歌联盟是最好的选择日积月累他的佣金比国内的一般平台都要高并且以美元的方式结算。所以国内很多站长都纷纷接入了此平台但是由于Google提供的CDN地址是国外的导致许多国内站点接入之后拖慢了网站的加载速度许多用户还没打开就直接关闭了非常影响用户的体验度非常头疼。下面小编将分享Google Adsense国内加载慢的解决方案请大家耐心认真看完。 下面是我的原谷歌广告代码
!-- wap*hengfuad --
ins classadsbygoogle styledisplay:inline-block;width:640px;height:60px data-ad-clientca-pub-6586051384793203 data-ad-slot1192451801/ins
script(adsbygoogle window.adsbygoogle || []).push({});
/script
script
window.onload function() {setTimeout(function() {let script document.createElement(script);script.setAttribute(async, );script.src https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?clientca-pub-6586051384793203;document.body.appendChild(script);}, 2e3);
}
/script有JS基础的同学都知道JS分同步和异步异步加载不影响加载速度所以我们这里用了定时器动态添加script标签然后给Script的src属性赋值改善后的代码如下
!-- wap*hengfuad --
ins classadsbygoogle styledisplay:inline-block;width:640px;height:60px data-ad-clientca-pub-6586051384793203 data-ad-slot1192451801/ins
script(adsbygoogle window.adsbygoogle || []).push({});
/script
script
window.onload function() {setTimeout(function() {let script document.createElement(script);script.setAttribute(async, );script.src https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?clientca-pub-6586051384793203;document.body.appendChild(script);}, 2e3);
}
/script大家把 script.src 中间的网址换为自己的网址即可。2e3 则为进入页面后等待2秒执行你学会了吗