我可以在Google双击标签中插入html吗?
<!-- /123456789/outsider -->
<div id='div-gpt-ad-123456789999-7'>
<p>Ad</p> <!-- is this ok? -->
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-123456789999-7'); });
</script>
</div>
我希望将“广告”放在广告上方。如果没有广告,我不想显示“广告”。或者我可以直接在DFP广告管理系统中制作标签吗?
答案 0 :(得分:0)
DFP会为您提供一个事件,您可以在其中检查广告位是否为空。
googletag.pubads().addEventListener('slotRenderEnded', function(event) {
if (!event.isEmpty && event.slot.getSlotElementId() === "div-gpt-ad-123456789999-7") {
//Here insert the code to set the 'Ad' text
}
});