根据google文档(https://developers.google.com/doubleclick-gpt/guides/get-started),在HTML标记中定义广告位时,您可以按以下方式定义广告单元和路径:
window.googletag = window.googletag || {cmd: []};
googletag.cmd.push(function() {
googletag
.defineSlot(
'/6355419/Travel', [728, 90], 'banner-ad')
.addService(googletag.pubads());
googletag.enableServices();
});
<div id="banner-ad" style="width: 728px; height: 90px;">
<script>
googletag.cmd.push(function() {
googletag.display('banner-ad');
});
</script>
广告单元路径遵循/network-code/[parent-ad-unit-code/.../]ad-unit-code
在我的库存中,我没有代码为Travel
的广告单元,也没有尺寸为728px x 90px的广告单元
所以问题是为什么我仍然可以看到广告?