-1

我有一个包含 8 个双击 AD 块的页面,有时给定的 AD 参数没有可以通过双击提供的广告,有没有办法检测是否提供了广告并防止进一步的双击 js 加载?

{% for ad in 123|make_list %}
        <div id="ad_618_50_{{ad}}">
            <script type="text/javascript">
                    document.write("<script type='text/javascript' src='http://ad-apac.doubleclick.net/Nxxx6/adj/xxx_2011/platinum;tile=1;cp={{results.doubleclick_category_id}};lp={{results.doubleclick_region_id}};kw={{results.doubleclick_category_name}};pos=box{{ad}};sz=618x50,618x110;;ord=88xxx4590xxx98461023?'><\/script>");                        
                </script>
        </div>
{% endfor %}
4

1 回答 1

0

好的,我已经实现了一个 hack,它使用 javascript 来检测是否通过双击脚本添加了 div,如果没有,则设置一个变量标志以禁止连续双击 js 加载

    {% for ad in 123|make_list %}
    <div id="ad_618_50_{{ad}}">
        <script type="text/javascript">
            if (typeof platinumAds === "undefined") {
                platinumAds = true;
            }
            if (platinumAds) {
                document.write("<script type='text/javascript' src='http://ad-apac.doubleclick.net/Nxxxx/adj/xxx.co.nz_2011/platinum;tile=1;cp={{results.doubleclick_category_id}};lp={{results.doubleclick_region_id}};kw={{results.doubleclick_category_name}};pos=box{{ad}};sz=618x50,618x110;;ord=xxx3014590xxx461023?'><\/script>");
                }
            </script>

        <script type="text/javascript">
            if (!$('#ad_618_50_{{ad}} > div').size()>0){
                platinumAds = false;
            }
        </script>
    </div>
    {% endfor %}
于 2012-07-23T23:40:35.430 回答