使用JS文件调用Google AdSense广告的方法

主机教程评论201字数 761阅读2分32秒阅读模式

在网页中插入 Google Adsense 广告,一般将源代码直接嵌入主题模板页面。事实上 Google AdSense 支持并允许使用 JS 文件调用。当然前提是不要因任何原因修改代码,或手动影响广告的定位。

对于通常的 HTML 静态网站,一般的做法是将公共头部和公共尾部都放到单独的 JavaScript 文件里,例如 header.js 和 footer.js,这样单独编辑这两个 JS 文件,即可同时修改全部网站内容,因此我们可以考虑把 Google AdSense 的代码放到这个头文件里。具体做法如下:文章源自国外主机测评-https://www.zjcp.org/14445.html

首先,登陆 Google AdSense 后台,获取广告代码,通常代码如下:文章源自国外主机测评-https://www.zjcp.org/14445.html

文章源自国外主机测评-https://www.zjcp.org/14445.html

之后,我们把如下 JavaScript 代码放到 header.js 头文件里即可,代码如下。文章源自国外主机测评-https://www.zjcp.org/14445.html

var js = document.createElement(“script”);文章源自国外主机测评-https://www.zjcp.org/14445.html

js.setAttribute(‘data-ad-client', ‘ca-pub-YOUR-ID');文章源自国外主机测评-https://www.zjcp.org/14445.html

js.setAttribute(‘async', true);文章源自国外主机测评-https://www.zjcp.org/14445.html

js.setAttribute(‘src', ‘https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js');文章源自国外主机测评-https://www.zjcp.org/14445.html

document.head.appendChild(js);文章源自国外主机测评-https://www.zjcp.org/14445.html

上面的代码里,需要把 ca-pub-YOUR-ID 替换为用户自己ID号码。文章源自国外主机测评-https://www.zjcp.org/14445.html

这段代码和原始的 Google AdSense 的 JavaScript 原理完全一样,实际显示效果也一样。

20211216 61bb4d3c34b03

 
  • 本文由 主机测评 发表于 2021年9月2日00:00:00
  • 转载请务必保留本文链接:https://www.zjcp.org/14445.html

发表评论