12.js

来自「从网上下载的关于学习动态链接库的连载教程」· JavaScript 代码 · 共 101 行

JS
101
字号
function ObjectAD() {
  /* Define Variables*/
  this.ADID        = 0;
  this.ADType      = 0;
  this.ADName      = "";
  this.ImgUrl      = "";
  this.ImgWidth    = 0;
  this.ImgHeight   = 0;
  this.FlashWmode  = 0;
  this.LinkUrl     = "";
  this.LinkTarget  = 0;
  this.LinkAlt     = "";
  this.Priority    = 0;
  this.CountView   = 0;
  this.CountClick  = 0;
  this.InstallDir  = "";
  this.ADDIR       = "";
}

function CodeZoneAD(_id) {
  /* Define Common Variables*/
  this.ID          = _id;
  this.ZoneID      = 0;

  /* Define Unique Variables*/

  /* Define Objects */
  this.AllAD       = new Array();
  this.ShowAD      = null;

  /* Define Functions */
  this.AddAD       = CodeZoneAD_AddAD;
  this.GetShowAD   = CodeZoneAD_GetShowAD;
  this.Show        = CodeZoneAD_Show;

}

function CodeZoneAD_AddAD(_AD) {
  this.AllAD[this.AllAD.length] = _AD;
}

function CodeZoneAD_GetShowAD() {
  if (this.ShowType > 1) {
    this.ShowAD = this.AllAD[0];
    return;
  }
  var num = this.AllAD.length;
  var sum = 0;
  for (var i = 0; i < num; i++) {
    sum = sum + this.AllAD[i].Priority;
  }
  if (sum <= 0) {return ;}
  var rndNum = Math.random() * sum;
  i = 0;
  j = 0;
  while (true) {
    j = j + this.AllAD[i].Priority;
    if (j >= rndNum) {break;}
    i++;
  }
  this.ShowAD = this.AllAD[i];
}

function CodeZoneAD_Show() {
  if (!this.AllAD) {
    return;
  } else {
    this.GetShowAD();
  }

  if (this.ShowAD == null) return false;
  document.write(this.ShowAD.ADIntro);
}

var ZoneAD_12 = new CodeZoneAD("ZoneAD_12");
ZoneAD_12.ZoneID      = 12;
ZoneAD_12.ZoneWidth   = 0;
ZoneAD_12.ZoneHeight  = 0;
ZoneAD_12.ShowType    = 1;

var objAD = new ObjectAD();
objAD.ADID           = 13;
objAD.ADType         = 4;
objAD.ADName         = "sousou250";
objAD.ImgUrl         = "";
objAD.ImgWidth       = 0;
objAD.ImgHeight      = 0;
objAD.FlashWmode     = 0;
objAD.ADIntro        = "<script type=\"text/JavaScript\">\n\rvar yahoo_pid=\"un_41076_769_19_45404\";\n\rvar yahoo_bordercolor=\"FFFFFF\";\n\rvar yahoo_titlecolor=\"0000FF\";\n\rvar yahoo_descolor=\"000000\";\n\rvar yahoo_linkcolor=\"006600\";\n\rvar yahoo_titlebgcolor=\"FFFFFF\";\n\rvar yahoo_desbgcolor=\"FFFFFF\";\n\rvar yahoo_width=250;\n\rvar yahoo_height=250;\n\rvar yahoo_isbanner=0;\n\rvar yahoo_displink=1;\n\rvar yahoo_adsnum=3;\n\rvar yahoo_simple=0;\n\rvar yahoo_iniframe=1;\n\r</script>\n\r<script type=\"text/javascript\" src=\"http://online4.lianmeng.com/hezuo/yahoo.js\"></script>";
objAD.LinkUrl        = "";
objAD.LinkTarget     = 1;
objAD.LinkAlt        = "";
objAD.Priority       = 1;
objAD.CountView      = 0;
objAD.CountClick     = 0;
objAD.InstallDir     = "/";
objAD.ADDIR          = "long";
ZoneAD_12.AddAD(objAD);

ZoneAD_12.Show();

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?