回传为空时隐藏外部 Iframe Criteo 异步标记

Hide external Iframe Criteo async tag when passback empty

希望有人能帮助我们。我们需要隐藏一个没有回传的外部 iframe,当没有横幅被加载时,异步 Criteo 标签创建(导致白色空白 space)。任何的想法?

这是标签:

    <div id="one" margin="0px">
    <script>
    var cto_zoneid_desktop = "xxxxxx";
    var cto_zoneid_mobile = "xxxxxx";
     var cto_lim_w = 700,cto_lim_h = 200,cto_zoneid_selected = cto_zoneid_desktop;
    if( window.screen.width<window.cto_lim_w || window.screen.height<window.cto_lim_h){cto_zoneid_selected = cto_zoneid_mobile;}
    var crt_curl = '#CLICK_URL_UNESC#';
    (function(w,d,s,c,z,u){var f=d.getElementsByTagName(s)[0],
    j=d.createElement(s),l = '&loc=' + encodeURIComponent(w.location), r = d.referrer ? '&referer=' + encodeURIComponent(d.referrer) : '', g = u.substring(0,4) == 'http' ? '&ct0='+encodeURIComponent(u) : '', cb="&cb="+Math.floor(Math.random()*99999999999) ;j.async='true';j.src=(("https:"==location.protocol?"https:":"http:")+
    '//cas.criteo.com/delivery/ajs.php?zoneid='+z+'&containerid='+c+g+l+r+cb).substring(0,2000);f.parentNode.insertBefore(j,f);
    })(window,document,'script','one',cto_zoneid_selected,crt_curl);
    </script>
    </div>

我找到了在没有横幅的情况下从 Criteo 隐藏 iframe 的解决方案。在回传中输入以下代码:

    <script type="text/javascript">
    window.frameElement.style.display = "none";
    </script>

有效。希望它可以帮助某人。