gpt4 book ai didi

parsing - Google DFP 提供的脚本被列为解析器阻止的跨源脚本

转载 作者:行者123 更新时间:2023-12-02 18:30:37 25 4
gpt4 key购买 nike

我有 Google DFP 提供的以下标准代码。不幸的是,它被列为解析器阻塞的跨源脚本,因为它是使用 document.write

实现的
<script>
(function() {
var useSSL = 'https:' == document.location.protocol;
var src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
})();
</script>

我觉得这很奇怪,因为这是 Google 自己提供的标准 DFP 脚本。有我应该使用的更新版本吗?

最佳答案

你可以使用这个:

(function () {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' === document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
}());

关于parsing - Google DFP 提供的脚本被列为解析器阻止的跨源脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39987989/

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