我正在创建一些JS,它将检测URL并根据当前路径分配变量。
然后,脚本会将变量写入页面上的函数和其他脚本。
我对JS很新,并且实际上已经将变量放到其他地方。
我可以提醒变量但不知道如何将它们添加到其他脚本中。
到目前为止脚本。
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script>
//define deafult id's and tags
var defaultBotID = "xxxxxxxxxxxx";
var defaultBotAdTag = "yyyyyyyyyyyyyyy";
//define id's and tags for xxx section
var anotherBotID = "aaaaaaaaaaaa";
var anotherBotAdTag = "bbbbbbbbbbbbbbbb";
//define the variables to be used on the page
window.adBotID;
window.adBotTag;
//**************************
// Check the current URL then assign id's and tags
if (window.location.href.indexOf("xxxx") > -1) {
adBotID = anotherBotID;
adBotTag = anotherBotAdTag;
} else {
adBotID = defaultBotID;
adBotTag = defaultBotAdTag;
}
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('**NEED ADBOTTAG HERE**', [300, 250], '**NEED ADBOTID HERE**').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
</head>
<body>
<div id='**NEED ADBOTID HERE**' style='width:300px; height:250px;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('**NEED ADBOTID HERE**'); });
</script>
</div>
</body>
我添加了需要写入变量的位置。
非常感谢任何帮助。
由于
答案 0 :(得分:0)
由于您需要在窗口上定义访问的变量,您还可以通过窗口访问它们。
googletag.defineSlot(window.adBotTag, [300, 250], window.adBotID).addService(googletag.pubads());
和
googletag.cmd.push(function() { googletag.display(window.adBotID); });