5

我创建了一个 html5 横幅并在此处对其进行了验证: https ://h5validator.appspot.com/dcm 。

它返回错误:“缺少点击标签检查”。

如何实现 clickTag?我在谷歌支持上找到了这段代码:

<html>
  <head>
    <meta name="ad.size" content="width=300,height=250">
    <script type="text/javascript">
      var clickTag = "http://www.google.com"; 
    </script>
  </head>

  <body>
    <a href="javascript:window.open(window.clickTag)">
      <img src="images/dclk.png" border=0>
    </a>
  </body>
</html>

但是在 DoubleClick 中上传 ZIP 文件后不是设置了横幅的目标 URL 吗?

我是否必须在 HTML 中设置硬编码的目标 URL?对我没有任何意义。。

过去我制作了很多 Flash 横幅,您只提到了一个变量 _root.clickTag。

谁能帮我吗?

谢谢

4

1 回答 1

1

为了创建一个双击工作室横幅,您需要导入双击工作室库并初始化启用程序。然后设置 Exit_url。省去您在 Google Web Designer 中轻松创建横幅的所有麻烦,并将直接上传到 DC 工作室

    <script src="https://s0.2mdn.net/ads/studio/Enabler.js"></script>

       <style>html, body {width: 100%; height: 100%}
        #bg-exit {
        background-color: rgba(255,255,255,0);
        cursor: pointer;
        height: 381px; //banner height
        left: 0px;
        position: absolute;
        top: 19px;
        width: 400px; //banner width
        z-index: 1;
    }</style>

   <div id="bg-exit"></div> <!-- put this div inside your main container of banner -->

<script>
    window.onload = function() {
  if (Enabler.isInitialized()) {
    enablerInitHandler();
  } else {
    Enabler.addEventListener(studio.events.StudioEvent.INIT, enablerInitHandler);
  }
}

function enablerInitHandler() {

}
    function bgExitHandler(e) {
  Enabler.exit('Background Exit');
}

document.getElementById('bg-exit').addEventListener('click', bgExitHandler, false);
    </script>

使用此代码,您可以动态更改 DC Studio 的 exit_url

于 2016-02-22T11:29:20.390 回答