源码学习:一个简单的日历控件

来源:网络收集 责任编辑:栏目编辑 发表时间:2013-07-01 07:15 点击:
calendar.js 
function atCalendarControl(){ 
  var calendar=this; 
  this.calendarPad=null; 
  this.prevMonth=null; 
  this.nextMonth=null; 
  this.prevYear=null; 
  this.nextYear=null; 
  this.goToday=null; 
  this.calendarClose=null; 
  this.calendarAbout=null; 
  this.head=null; 
  this.body=null; 
  this.today=[]; 
  this.currentDate=[]; 
  this.sltDate; 
  this.target; 
  this.source;  
  /************** 加入日历底板及阴影 *********************/ 
  this.addCalendarPad=function(){ 
   document.write("<div id=’divCalendarpad’ style=’position:absolute;top:100;left:0;width:255;height:167;display:none;’>"); 
   document.write("<iframe frameborder=0 height=168 width=255></iframe>"); 
   document.write("<div style=’position:absolute;top:4;left:4;width:248;height:164;background-color:#336699;’></div>"); 
   document.write("</div>"); 
   calendar.calendarPad=document.all.divCalendarpad; 
  } 
  /************** 加入日历面板 *********************/ 
  this.addCalendarBoard=function(){ 
   var BOARD=this; 
   var divBoard=document.createElement("div"); 
   calendar.calendarPad.insertAdjacentElement("beforeEnd",divBoard); 
   divBoard.style.cssText="position:absolute;top:0;left:0;width:250;height:166;border:1 outset;background-color:buttonface;"; 
var tbBoard=document.createElement("table"); 
   divBoard.insertAdjacentElement("beforeEnd",tbBoard); 
   tbBoard.style.cssText="position:absolute;top:0;left:0;width:100%;height:10;font-size:9pt;"; 
   tbBoard.cellPadding=0; 
   tbBoard.cellSpacing=1; 
   tbBoard.bgColor="#333333";  
  /************** 设置各功能按钮的功能 *********************/ 
   /*********** Calendar About Button ***************/ 
   trRow = tbBoard.insertRow(0); 
   calendar.calendarAbout=calendar.insertTbCell(trRow,0,"-","center"); 
   calendar.calendarAbout.onclick=function(){calendar.about();} 
   /*********** Calendar Head ***************/ 
   tbCell=trRow.insertCell(1); 
   tbCell.colSpan=5; 
   tbCell.bgColor="#99CCFF"; 
   tbCell.align="center"; 
   tbCell.style.cssText = "cursor:default"; 
   calendar.head=tbCell; 
   /*********** Calendar Close Button ***************/ 
   tbCell=trRow.insertCell(2); 
   calendar.calendarClose = calendar.insertTbCell(trRow,2,"x","center"); 
   calendar.calendarClose.title="关闭"; 
   calendar.calendarClose.onclick=function(){calendar.hide();} 
   /*********** Calendar PrevYear Button ***************/ 
   trRow = tbBoard.insertRow(1); 
   calendar.prevYear = calendar.insertTbCell(trRow,0,"&lt;&lt;","center"); 
   calendar.prevYear.title="上一年"; 
   calendar.prevYear.onmousedown=function(){ 
    calendar.currentDate[0]--; 
    calendar.show(calendar.target,calendar.currentDate[0]+"-"+calendar.currentDate[1]+"-"+calendar.currentDate[2],calendar.source); 
   } 
   /*********** Calendar PrevMonth Button ***************/ 
   calendar.prevMonth = calendar.insertTbCell(trRow,1,"&lt;","center"); 
   cale
    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • Gb2312转utf-8编码的方法(vbs+js)
    • 如何使用Ajax技术开发Web应用程序(1)
    • js跳转路径问题
    • JavaScript模仿桌面窗口
    • 用js检测两个线段是否相交
    • 我知道的JavaScript -- 设计模式(桥接)应用之 – 验证器
    • 运用JavaScript构建你的第一个Metro式应用程序(on Windows
    • 我是如何去了解jquery的(六),案例之幻灯片轮换
    • Jquery封装幻灯片效果
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1