弹出页面广告大小修改

作者:动易网络 来源:本站原创 点击数: 发布时间:2013年03月19日

 

问题描述:弹出页面广告大小在后台修改广告版位大小不起作用

         

问题分析:弹出广告宽高是由广告js来控制的,我们要找到弹出广告js并修改。

解决方法:我们给js添加判断条件,使广告读取广告版位的宽高

          function PopZoneAD_Struct() {

    var tempwidth;

    var tempheight;

    if(this.ShowAD.ImgWidth) 

    {

        tempwidth = this.ShowAD.ImgWidth;

    }

    else {

        if (this.ZoneWidth) {

            tempwidth = this.ZoneWidth;

        }

        else {

            tempwidth = 350;

        }

    }

    if (this.ShowAD.ImgHeight) {

        tempheight = this.ShowAD.ImgHeight;

    }

    else {

        if (this.ZoneHeight) {

            tempheight = this.ZoneHeight;

        }

        else {

            tempheight = 250;

        }

    }         

 

 

 

 

 

 

 

然后修改广告版位宽度,刷新广告

 

 

广告版位大小显示修改后的宽高。

使用下面js替换网站源文件下IAAADTemplateTemplate_Pop.js文件就可以了。

文件下载 广告替换文件下载