如何在另一个JS文件中调用Adsense代码?

时间:2015-08-26 14:29:23

标签: javascript adsense

我在AD服务平台工作,使用CDN服务来投放广告。我们只能将静态文件上传到CDN。如果我们想要提供Adsense或其他Advertising JS片段,例如。如下所示:

<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- site 180x150 -->
<ins class="adsbygoogle"
     style="display:inline-block;width:180px;height:150px"
     data-ad-client="ca-pub-xxxx"
     data-ad-slot="xxxx"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>

创建JS文件并将其上传到CDN不起作用。代码不会被调用。我尝试将代码重写为document.write(),但它也不起作用。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

写实际上是正确的解决方案,回车就是问题。这里是代码:

document.write('<script async  src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!--     responsive pbsqrd --><ins class="adsbygoogle" style="display:block" data-ad-    client="ca-pub-xxxx" data-ad-slot="xxxx" data-ad-format="auto"></ins><script>    (adsbygoogle = window.adsbygoogle || []).push({});</script>');