gpt4 book ai didi

javascript - 页面加载后加载 Google adsense

转载 作者:行者123 更新时间:2023-11-28 09:08:48 25 4
gpt4 key购买 nike

我的网站有一个使用 ajax 加载内容的页面。我需要在该请求的内容中附加谷歌广告,但有条件。我知道 Google 广告无法使用 ajax,因为它使用 document.write 发出第二个请求,该请求仅在页面加载完成之前有效。我想过破解 document.write 并且它确实有效(至少在 Firefox 中)。 任何人都可以告诉我这是否违反 Google 政策。

$.ajax(function(){
.....
success: function(){
document.write = function() {
var script = document.createElement('script');
script.type = "text/javascript";
script.src = location.protocol + "//www.google.com/ads/search/module/ads/3.0/XXXX/n/search.js";
document.getElementsByTagName('head')[0].appendChild(script);
};
var script = document.createElement('script');
script.type = "text/javascript";
script.src = location.protocol + "//www.google.com/adsense/search/ads.js";
document.getElementsByTagName('head')[0].appendChild(script);
}//Success end
});//Ajax end

仅供引用:字符串是硬编码的,仅供说明之用。

最佳答案

违反 Google 条款及条件的问题已在与此主题相关的不同主题中讨论过(广告刷新)。 Refresh a Div that has a Google ad inside it作为一个例子,有一个答案可以让我们了解一些模糊的(IMO)谷歌政策。

除此之外,谷歌还引入了另一种标签模型来处理刷新广告的情况。

因此,问题的答案在于名为 GPT - Google 发布商代码的新 Google 广告代码有关 GPT 的信息,您可以访问 Introduction to the Google Publisher Tag 。看看Sample Google Publisher Tag

最后reloading ads without refreshing the whole page

关于javascript - 页面加载后加载 Google adsense,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16557598/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com