gpt4 book ai didi

javascript - 将查询字符串传递到 Google 发布商代码中

转载 作者:行者123 更新时间:2023-11-29 15:35:11 25 4
gpt4 key购买 nike

我需要将查询字符串从当前网址传递到 GPT(Google 发布商代码)中,该代码将在页面加载时调用 DFP。

例如,如果这是 URL: http://example.net/article/100-days.html?c=xyz

我需要将 c=xyz 作为键值插入。我有超过 50 组这样的 c= 查询字符串,并且需要 GPT 调用针对出现的任何字符串的广告(无论是 c=xyz 还是 c=abc,等):

<head>

<script type="text/javascript">
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(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);
})();
</script>

<script type="text/javascript">
googletag.cmd.push(function() {
googletag.defineSlot('/6355419/Travel/Europe/France/Paris',[300, 250], "banner1"); // adds the first slot with it's own slot level custom targeting

googletag.pubads().setTargeting("c","xyz"); // adds custom targeting that applies to the entire page - i.e. all the slots on the page.

googletag.enableServices();
});
</script>
</head>

我认为这需要一个 get 函数,但我不确定在 JS 中最有效的方法是什么。

最佳答案

试试这里的答案: How can I get query string values in JavaScript?

类似于:

googletag.pubads().setTargeting( 'c', getParameterByName('c') );

关于javascript - 将查询字符串传递到 Google 发布商代码中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30064569/

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