`
ldsjdy
  • 浏览: 150983 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

网页内容居中

    博客分类:
  • html
阅读更多
2011.01.22 ,只要设置了width:960px;margin:0 auto; 这几个样式就可以了



div +css 让整个网页面的内容自动居中
1. 主要有用到 css 中的 margin 和text-align 属性

example:





<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>
		<base href="<%=basePath%>">

		<title>query-autocomplete</title>

		<meta http-equiv="pragma" content="no-cache">
		<meta http-equiv="cache-control" content="no-cache">
		<meta http-equiv="expires" content="0">
		<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
		<meta http-equiv="description" content="This is my page">
		<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

		<style type="text/css">
body {
	margin: 0px auto;
	
	/*在IE6中需用到,否则不会居中*/
	text-align: center;
}

.main {
 /*除了在body中设置了margin:0px auto; 还需要在要居中的块中设置此属性*/
	margin: 0px auto;
	width: 600px;
	height: 300px;
	background-color: gray;
	text-align: center;
}
</style>


	</head>

	<body>
		<div class="main">
			<div>
				query auto complete.
			</div>
			<div style="float: left">
				<lable>
				Input
				</lable>
			</div>
		</div>
	</body>
</html>





分享到:
评论
2 楼 ldsjdy 2010-07-19  

<html>
<head>
<!--
<script type="text/javascript" src="http://j.maxmind.com/app/geoip.js"></script>
<script type="text/javascript" src="http://fw.qq.com/ipaddress"></script>
date js 重要代码部份
674
752
1116
-->

<script type="text/javascript">
var dateDisplay;
var cal;
var isFocus=false; //是否为焦点
var pickMode ={
    "second":1,
    "minute":2,
    "hour":3,
    "day":4,
    "month":5,
    "year":6  };

var topY=0,leftX=0;  //自定义定位偏移量 2007-02-11 由 寒羽枫添加
//选择日期 → 由 寒羽枫 2007-06-10 添加,通过 ID 来选日期
function SelectDateById(id,strFormat,x,y)
{
    var obj = document.getElementById(id);
    if(obj == null){return false;}
    obj.focus();
    if(obj.onclick != null){obj.onclick();}
    else if(obj.click != null){obj.click();}
    else{SelectDate(obj,strFormat,x,y)}
}

//选择日期 → 由 寒羽枫 2006-06-25 添加
function SelectDate(obj,strFormat,x,y)
{
    dateDisplay =document.getElementById("inputs");

    leftX =(x == null) ? leftX : x;
    topY  =(y == null) ? topY : y;//自定义定位偏移量 2007-02-11 由 寒羽枫添加
    if(document.getElementById("ContainerPanel")==null){InitContainerPanel();}
    var date = new Date();
    var by = date.getFullYear()-50;  //最小值 → 50 年前
    var ey = date.getFullYear()+50;  //最大值 → 50 年后
    //cal = new Calendar(by, ey,1,strFormat);    //初始化英文版,0 为中文版
    cal = (cal==null) ? new Calendar(by, ey, 0) : cal;    //不用每次都初始化 2006-12-03 修正
    cal.DateMode =pickMode["second"]; //复位
    if(strFormat.indexOf('s')< 0) {cal.DateMode =pickMode["minute"];}//精度为分
    if(strFormat.indexOf('m')< 0) {cal.DateMode =pickMode["hour"];}//精度为时
    if(strFormat.indexOf('h')< 0) {cal.DateMode =pickMode["day"];}//精度为日
    if(strFormat.indexOf('d')< 0) {cal.DateMode =pickMode["month"];}//精度为月
    if(strFormat.indexOf('M')< 0) {cal.DateMode =pickMode["year"];}//精度为年
    if(strFormat.indexOf('y')< 0) {cal.DateMode =pickMode["second"];}//默认精度为秒
    cal.dateFormatStyleOld = cal.dateFormatStyle;
    cal.dateFormatStyle = strFormat;
    cal.show(obj);
}
/**//**//**//**//**//**//**//**
 * 返回日期
 * @param d the delimiter
 * @param p the pattern of your date
 2006-06-25 由 寒羽枫 修改为根据用户指定的 style 来确定;
 */
String.prototype.toDate = function(style) {
    var y = this.substring(style.indexOf('y'),style.lastIndexOf('y')+1);//年
    var M = this.substring(style.indexOf('M'),style.lastIndexOf('M')+1);//月
    var d = this.substring(style.indexOf('d'),style.lastIndexOf('d')+1);//日
    var h = this.substring(style.indexOf('h'),style.lastIndexOf('h')+1);//时
    var m = this.substring(style.indexOf('m'),style.lastIndexOf('m')+1);//分
    var s = this.substring(style.indexOf('s'),style.lastIndexOf('s')+1);//秒

    if(s == null ||s == "" || isNaN(s)) {s = new Date().getSeconds();}
    if(m == null ||m == "" || isNaN(m)) {m = new Date().getMinutes();}
    if(h == null ||h == "" || isNaN(h)) {h = new Date().getHours();}
    if(d == null ||d == "" || isNaN(d)) {d = new Date().getDate();}
    if(M == null ||M == "" || isNaN(M)) {M = new Date().getMonth()+1;}
    if(y == null ||y == "" || isNaN(y)) {y = new Date().getFullYear();}
    var dt ;
    eval ("dt = new Date('"+ y+"', '"+(M-1)+"','"+ d+"','"+ h+"','"+ m+"','"+ s +"')");

    return dt;
}

/**//**//**//**//**//**//**//**
 * 格式化日期
 * @param   d the delimiter
 * @param   p the pattern of your date
 * @author  meizz
 */
Date.prototype.format = function(style) {
   // window.alert(style);
    var o = {
        "M+" : this.getMonth() + 1, //month
        "d+" : this.getDate(),      //day
        "h+" : this.getHours(),     //hour
        "m+" : this.getMinutes(),   //minute
        "s+" : this.getSeconds(),   //second
        "w+" : "天一二三四五六".charAt(this.getDay()),   //week
        "q+" : Math.floor((this.getMonth() + 3) / 3),  //quarter
        "S"  : this.getMilliseconds() //millisecond
    }
    if(/(y+)/.test(style)) {
        style = style.replace(RegExp.$1,
        (this.getFullYear() + "").substr(4 - RegExp.$1.length));
    }
    for(var k in o){
        if(new RegExp("("+ k +")").test(style)){
            style = style.replace(RegExp.$1,
            RegExp.$1.length == 1 ? o[k] :
                ("00" + o[k]).substr(("" + o[k]).length));
        }
    }

   // window.alert(style);
    return style;
}

//2007-09-14  由寒羽枫添加返回所选日期
Calendar.prototype.ReturnDate = function(dt) {

    //alert("afaewg");
    if (this.dateControl != null){this.dateControl.value = dt;}
    calendar.hide();
    if(this.dateControl.onchange == null){return;}
    //将 onchange 转成其它函数,以免触发验证事件
    var ev = this.dateControl.onchange.toString(); //找出函数的字串
    ev = ev.substring(
    ((ev.indexOf("ValidatorOnChange();")> 0) ? ev.indexOf("ValidatorOnChange();") + 20 : ev.indexOf("{") + 1)
    , ev.lastIndexOf("}"));//去除验证函数 ValidatorOnChange();
    var fun = new Function(ev);     //重新定义函数
    this.dateControl.changeEvent = fun;
    this.dateControl.changeEvent();//触发自定义 changeEvent 函数
}

/**//**//**//**//**//**//**//**
 * 日历类
 * @param   beginYear 1990
 * @param   endYear   2010
 * @param   lang      0(中文)|1(英语) 可自由扩充
 * @param   dateFormatStyle  "yyyy-MM-dd";
 * @version 2006-04-01
 * @author  KimSoft (jinqinghua [at] gmail.com)
 * @update
 */
function Calendar(beginYear, endYear, lang, dateFormatStyle) {
    this.beginYear = 1950;
    this.endYear = 2050;
    this.lang = 0;            //0(中文) | 1(英文)
    this.dateFormatStyle = "yyyy-MM-dd hh:mm:ss";

    if (beginYear != null && endYear != null){
        this.beginYear = beginYear;
        this.endYear = endYear;
    }
    if (lang != null){
        this.lang = lang
    }

    if (dateFormatStyle != null){
        this.dateFormatStyle = dateFormatStyle
    }

    this.dateControl = null;
    this.panel = this.getElementById("calendarPanel");
    this.container = this.getElementById("ContainerPanel");
    this.form  = null;

    this.date = new Date();
    this.year = this.date.getFullYear();
    this.month = this.date.getMonth();

    this.day = this.date.getDate();
    this.hour = this.date.getHours();
    this.minute = this.date.getMinutes();
    this.second = this.date.getSeconds();

    this.colors = {
        "cur_word"      : "#FFFFFF",  //当日日期文字颜色
        "cur_bg"        : "#00FF00",  //当日日期单元格背影色
        "sel_bg"        : "#FFCCCC",  //已被选择的日期单元格背影色 2006-12-03 寒羽枫添加
        "sun_word"      : "#FF0000",  //星期天文字颜色
        "sat_word"      : "#0000FF",  //星期六文字颜色
        "td_word_light" : "#333333",  //单元格文字颜色
        "td_word_dark"  : "#CCCCCC",  //单元格文字暗色
        "td_bg_out"     : "#EFEFEF",  //单元格背影色
        "td_bg_over"    : "#FFCC00",  //单元格背影色
        "tr_word"       : "#FFFFFF",  //日历头文字颜色
        "tr_bg"         : "#666666",  //日历头背影色
        "input_border"  : "#CCCCCC",  //input控件的边框颜色
        "input_bg"      : "#EFEFEF"   //input控件的背影色
    }
    /* //2008-01-29 放到了 show ,因为要做 pickMode 判断
  this.draw();
  this.bindYear();
  this.bindMonth();
     */
    //this.changeSelect();
    //this.bindData(); //2006-12-30 由民工.砖家注释
}

/**//**//**//**//**//**//**//**
 * 日历类属性(语言包,可自由扩展)
 */
Calendar.language = {
    "year"   : [[""], [""]],
    "months" : [
        ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]  ,
	["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]
    ],
    "weeks"  : [        ["S","M","T","W","T","F","S"]  ,
        ["S","M","T","W","T","F","S"]

    ],
    "hour"  : [["H"], ["H"]],
    "minute"  : [["M"], ["M"]],
    "second"  : [["S"], ["S"]],
    "clear"  : [["clear"], ["CLS"]],
    "today"  : [["today"], ["TODAY"]],
    "pickTxt"  : [["确定"], ["OK"]],//pickMode 精确到年、月时把today变成“确定”
    "close"  : [["close"], ["CLOSE"]]
}

Calendar.prototype.draw = function() {
    calendar = this;

    var mvAry = [];
    //mvAry[mvAry.length]  = '  <form name="calendarForm" style="margin: 0px;">'; //因 <form> 不能嵌套, 2006-12-01 由寒羽枫改用 Div
    mvAry[mvAry.length]  = '  <div name="calendarForm" style="margin: 0px;">';
    mvAry[mvAry.length]  = '    <table width="100%" border="0" cellpadding="0" cellspacing="1" style="font-size:12px;">';
    mvAry[mvAry.length]  = '      <tr>';
    mvAry[mvAry.length]  = '        <th align="left" width="1%"><input style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:16px;height:20px;';
    if(calendar.DateMode > pickMode["month"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到年时隐藏“月”
    mvAry[mvAry.length]  ='" name="prevMonth" type="button" id="prevMonth" value="&lt;" /></th>';
    mvAry[mvAry.length]  = '        <th align="center" width="98%" nowrap="nowrap"><select name="calendarYear" id="calendarYear" style="font-size:12px;"></select><select name="calendarMonth" id="calendarMonth" style="font-size:12px;';
    if(calendar.DateMode > pickMode["month"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到年时隐藏“月”
    mvAry[mvAry.length]  = '"></select></th>';
    mvAry[mvAry.length]  = '        <th align="right" width="1%"><input style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:16px;height:20px;';
    if(calendar.DateMode > pickMode["month"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到年时隐藏“月”
    mvAry[mvAry.length]  ='" name="nextMonth" type="button" id="nextMonth" value="&gt;" /></th>';
    mvAry[mvAry.length]  = '      </tr>';
    mvAry[mvAry.length]  = '    </table>';
    mvAry[mvAry.length]  = '    <table id="calendarTable" width="100%" style="border:0px solid #CCCCCC;background-color:#FFFFFF;font-size:12px;';
    if(calendar.DateMode >= pickMode["month"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到年、月时隐藏“天”
    mvAry[mvAry.length]  = '" border="0" cellpadding="3" cellspacing="1">';
    mvAry[mvAry.length]  = '      <tr>';
    for(var i = 0; i < 7; i++) {
        mvAry[mvAry.length]  = '      <th style="font-weight:normal;background-color:' + calendar.colors["tr_bg"] + ';color:' + calendar.colors["tr_word"] + ';">' + Calendar.language["weeks"][this.lang][i] + '</th>';
    }
    mvAry[mvAry.length]  = '      </tr>';
    for(var i = 0; i < 6;i++){
        mvAry[mvAry.length]  = '    <tr align="center">';
        for(var j = 0; j < 7; j++) {
            if (j == 0){
                mvAry[mvAry.length]  = '  <td style="cursor:default;color:' + calendar.colors["sun_word"] + ';"></td>';
            } else if(j == 6) {
                mvAry[mvAry.length]  = '  <td style="cursor:default;color:' + calendar.colors["sat_word"] + ';"></td>';
            } else {
                mvAry[mvAry.length]  = '  <td style="cursor:default;"></td>';
            }
        }
        mvAry[mvAry.length]  = '    </tr>';
    }

    //2009-03-03 添加的代码,放置时间的行
    mvAry[mvAry.length]  = '      <tr style="';
    if(calendar.DateMode >= pickMode["day"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到时日隐藏“时间”
    mvAry[mvAry.length]  = '"><td align="center" colspan="7">';
    mvAry[mvAry.length]  = '      <select name="calendarHour" id="calendarHour" style="font-size:12px;"></select>' + Calendar.language["hour"][this.lang];
    mvAry[mvAry.length]  = '<span style="'
    if(calendar.DateMode >= pickMode["hour"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到小时时隐藏“分”
    mvAry[mvAry.length]  = '"><select name="calendarMinute" id="calendarMinute" style="font-size:12px;"></select>' + Calendar.language["minute"][this.lang]+'</span>';
    mvAry[mvAry.length]  = '<span style="'
    if(calendar.DateMode >= pickMode["minute"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到小时、分时隐藏“秒”
    mvAry[mvAry.length]  = '"><select name="calendarSecond" id="calendarSecond" style="font-size:12px;"></select>'+ Calendar.language["second"][this.lang]+'</span>';
    mvAry[mvAry.length]  = '      </td></tr>';

    mvAry[mvAry.length]  = '    </table>';
    //mvAry[mvAry.length]  = '  </from>';
    mvAry[mvAry.length]  = '      <div align="center" style="padding:4px 4px 4px 4px;background-color:' + calendar.colors["input_bg"] + ';">';
    mvAry[mvAry.length]  = '        <input name="calendarClear" type="button" id="calendarClear" value="' + Calendar.language["clear"][this.lang] + '" style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:40px;height:20px;font-size:12px;cursor:pointer;"/>';
    mvAry[mvAry.length]  = '        <input name="calendarToday" type="button" id="calendarToday" value="'
    mvAry[mvAry.length]  = (calendar.DateMode == pickMode["day"]) ? Calendar.language["today"][this.lang] : Calendar.language["pickTxt"][this.lang];
    mvAry[mvAry.length]  = '" style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:60px;height:20px;font-size:12px;cursor:pointer"/>';
    mvAry[mvAry.length]  = '        <input name="calendarClose" type="button" id="calendarClose" value="' + Calendar.language["close"][this.lang] + '" style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:40px;height:20px;font-size:12px;cursor:pointer"/>';
    mvAry[mvAry.length]  = '      </div>';

    mvAry[mvAry.length]  = '  </div>';
    this.panel.innerHTML = mvAry.join("");

    /**//**//**//******** 以下代码由寒羽枫 2006-12-01 添加 **********/
    var obj = this.getElementById("prevMonth");
    obj.onclick = function () {calendar.goPrevMonth(calendar);}
    obj.onblur = function () {calendar.onblur();}
    this.prevMonth= obj;

    obj = this.getElementById("nextMonth");
    obj.onclick = function () {calendar.goNextMonth(calendar);}
    obj.onblur = function () {calendar.onblur();}
    this.nextMonth= obj;

    obj = this.getElementById("calendarClear");
    obj.onclick = function ()
    { calendar.ReturnDate(""); /*calendar.dateControl.value = "";calendar.hide();*///2007-09-14 由寒羽枫注释
    }
    this.calendarClear = obj;

    obj = this.getElementById("calendarClose");
    obj.onclick = function () {calendar.hide();}
    this.calendarClose = obj;

    obj = this.getElementById("calendarYear");
    obj.onchange = function () {calendar.update(calendar);}
    obj.onblur = function () {calendar.onblur();}
    this.calendarYear = obj;

    obj = this.getElementById("calendarMonth");
    with(obj)
    {
        onchange = function () {calendar.update(calendar);}
        onblur = function () {calendar.onblur();}
    }this.calendarMonth = obj;

    obj = this.getElementById("calendarHour");
    obj.onchange = function () {calendar.hour = this.options[this.selectedIndex].value;}
    obj.onblur = function () {calendar.onblur();}
    this.calendarHour = obj;

    obj = this.getElementById("calendarMinute");
    obj.onchange = function () {calendar.minute = this.options[this.selectedIndex].value;}
    obj.onblur = function () {calendar.onblur();}
    this.calendarMinute = obj;

    obj = this.getElementById("calendarSecond");
    obj.onchange = function () {calendar.second = this.options[this.selectedIndex].value;}
    obj.onblur = function () {calendar.onblur();}
    this.calendarSecond = obj;

    obj = this.getElementById("calendarToday");
    obj.onclick = function () {
        var today = (calendar.DateMode != pickMode["day"]) ?
            new Date(calendar.year,calendar.month,calendar.day,calendar.hour,calendar.minute,calendar.second)
        : new Date();//2008-01-29
        calendar.ReturnDate(today.format(calendar.dateFormatStyle));
    }
    this.calendarToday = obj;
}

//年份下拉框绑定数据
Calendar.prototype.bindYear = function() {
    var cy = this.calendarYear;//2006-12-01 由寒羽枫修改
    cy.length = 0;
    for (var i = this.beginYear; i <= this.endYear; i++){
        cy.options[cy.length] = new Option(i + Calendar.language["year"][this.lang], i);
    }
}

// 月份下拉框绑定数据
Calendar.prototype.bindMonth = function() {
    var cm = this.calendarMonth;//2006-12-01 由寒羽枫修改
    cm.length = 0;
    for (var i = 0; i < 12; i++){
        cm.options[cm.length] = new Option(Calendar.language["months"][this.lang][i], i);
    }
}

//小时下拉框绑定数据
Calendar.prototype.bindHour = function() {
    var ch = this.calendarHour;
    if(ch.length > 0){return;}//2009-03-03 不需要重新绑定,提高性能
    //ch.length = 0;
    var h;
    for (var i = 0; i < 24; i++){
        h = ("00" + i +"").substr(("" + i).length);
        ch.options[ch.length] = new Option(h, h);
    }
}

//分钟下拉框绑定数据
Calendar.prototype.bindMinute = function() {
    var cM = this.calendarMinute;
    if(cM.length > 0){return;}//2009-03-03 不需要重新绑定,提高性能
    //cM.length = 0;
    var M;
    for (var i = 0; i < 60; i++){
        M = ("00" + i +"").substr(("" + i).length);
        cM.options[cM.length] = new Option(M, M);
    }
}

// 秒钟下拉框绑定数据
Calendar.prototype.bindSecond = function() {
    var cs = this.calendarSecond;
    if(cs.length > 0){return;}//2009-03-03 不需要重新绑定,提高性能
    //cs.length = 0;
    var s;
    for (var i = 0; i < 60; i++){
        s = ("00" + i +"").substr(("" + i).length);
        cs.options[cs.length] = new Option(s, s);
    }
}

//向前JAN
Calendar.prototype.goPrevMonth = function(e){
    if (this.year == this.beginYear && this.month == 0){return;}
    this.month--;
    if (this.month == -1) {
        this.year--;
        this.month = 11;
    }
    this.date = new Date(this.year, this.month, 1);
    this.changeSelect();
    this.bindData();
}

//向后JAN
Calendar.prototype.goNextMonth = function(e){
    if (this.year == this.endYear && this.month == 11){return;}
    this.month++;
    if (this.month == 12) {
        this.year++;
        this.month = 0;
    }
    this.date = new Date(this.year, this.month, 1);
    this.changeSelect();
    this.bindData();
}

//改变SELECT选中状态
Calendar.prototype.changeSelect = function() {
    var cy = this.calendarYear;//2006-12-01 由寒羽枫修改
    var cm = this.calendarMonth;
    var ch = this.calendarHour;
    var cM = this.calendarMinute;
    var cs = this.calendarSecond;
    //2006-12-30 由民工.砖家修改,减少运算次数
    cy[this.date.getFullYear()-this.beginYear].selected = true;
    cm[this.date.getMonth()].selected =true;

    //2009-03-03 添加,初始化时间的值
    ch[this.hour].selected =true;
    cM[this.minute].selected =true;
    cs[this.second].selected =true;
}

//更新年、月
Calendar.prototype.update = function (e){
    this.year  = e.calendarYear.options[e.calendarYear.selectedIndex].value;//2006-12-01 由寒羽枫修改
    this.month = e.calendarMonth.options[e.calendarMonth.selectedIndex].value;
    this.date = new Date(this.year, this.month, 1);
    //this.changeSelect();
    this.bindData();
}

//绑定数据到月视图
Calendar.prototype.bindData = function () {
    var calendar = this;
    if(calendar.DateMode >= pickMode["month"]){return;}//2008-01-29
    // var dateArray = this.getMonthViewArray(this.date.getYear(), this.date.getMonth());
    //2006-12-30 由民工.砖家修改 在Firefox 下年份错误
    var dateArray = this.getMonthViewArray(this.date.getFullYear(), this.date.getMonth());
    var tds = this.getElementById("calendarTable").getElementsByTagName("td");
    for(var i = 0; i < tds.length; i++) {
        tds[i].style.backgroundColor = calendar.colors["td_bg_out"];
        tds[i].onclick = function () {return;}
        tds[i].onmouseover = function () {return;}
        tds[i].onmouseout = function () {return;}
        if (i > dateArray.length - 1) break;
        tds[i].innerHTML = dateArray[i];
        if (dateArray[i] != "&nbsp;"){
            tds[i].bgColorTxt = "td_bg_out"; //2009-03-03 保存背景色的class
            var cur = new Date();
            tds[i].isToday = false;
            if (cur.getFullYear() == calendar.date.getFullYear() && cur.getMonth() == calendar.date.getMonth() && cur.getDate() == dateArray[i]) {
                //是today的单元格
                tds[i].style.backgroundColor = calendar.colors["cur_bg"];
                tds[i].bgColorTxt = "cur_bg";
                tds[i].isToday = true;
            }
            if(calendar.dateControl != null )
            {
                cur = calendar.dateControl.value.toDate(calendar.dateFormatStyle);
                if (cur.getFullYear() == calendar.date.getFullYear() && cur.getMonth() == calendar.date.getMonth()&& cur.getDate() == dateArray[i]) {
                    //是已被选中的单元格
                    calendar.selectedDayTD = tds[i];
                    tds[i].style.backgroundColor = calendar.colors["sel_bg"];
                    tds[i].bgColorTxt = "sel_bg";
                }
            }
            tds[i].onclick = function () {
                if(calendar.DateMode == pickMode["day"]) //2009-03-03 当选择日期时,点击格子即返回值
                {
                   // calendar.ReturnDate(new Date(calendar.date.getFullYear(),
                   // calendar.date.getMonth(),
                   // this.innerHTML).format(calendar.dateFormatStyle));
                }
                else
                {
                    //if(calendar.selectedDayTD != null) //2009-03-03 清除已选中的背景色
                    //{
                    //    calendar.selectedDayTD.style.backgroundColor =(calendar.selectedDayTD.isToday)? calendar.colors["cur_bg"] : calendar.colors["td_bg_out"];
                    //}
                   // this.style.backgroundColor = calendar.colors["sel_bg"];
                   // calendar.day = this.innerHTML;
                   // calendar.selectedDayTD = this; //2009-03-03 记录已选中的日子
                }
            }
            tds[i].style.cursor ="pointer"; //2007-08-06 由寒羽枫添加,鼠标变成手指状
            tds[i].onmouseover = function () {
                this.style.backgroundColor = calendar.colors["td_bg_over"];
            }
            tds[i].onmouseout = function () {
                if(calendar.selectedDayTD != this) {
                    this.style.backgroundColor = calendar.colors[this.bgColorTxt];}
            }
            tds[i].onblur = function () {calendar.onblur();}
        }
    }
}

//根据年、月得到月视图数据(数组形式)
Calendar.prototype.getMonthViewArray = function (y, m) {
    var mvArray = [];
    var dayOfFirstDay = new Date(y, m, 1).getDay();
    var daysOfMonth = new Date(y, m + 1, 0).getDate();
    for (var i = 0; i < 42; i++) {
        mvArray[i] = "&nbsp;";
    }
    for (var i = 0; i < daysOfMonth; i++){
        mvArray[i + dayOfFirstDay] = i + 1;
    }
    return mvArray;
}

//扩展 document.getElementById(id) 多浏览器兼容性 from meizz tree source
Calendar.prototype.getElementById = function(id){
    if (typeof(id) != "string" || id == "") return null;
    if (document.getElementById) return document.getElementById(id);
    if (document.all) return document.all(id);
    try {return eval(id);} catch(e){ return null;}
}

//扩展 object.getElementsByTagName(tagName)
Calendar.prototype.getElementsByTagName = function(object, tagName){
    if (document.getElementsByTagName) return document.getElementsByTagName(tagName);
    if (document.all) return document.all.tags(tagName);
}

// 取得HTML控件绝对位置
Calendar.prototype.getAbsPoint = function (e){
    var x = e.offsetLeft;
    var y = e.offsetTop;
    while(e = e.offsetParent){
        x += e.offsetLeft;
        y += e.offsetTop;
    }
    return {"x": x, "y": y};
}

// 显示日历
Calendar.prototype.show = function (dateObj, popControl) {
    if (dateObj == null){
        throw new Error("arguments[0] is necessary")
    }
    this.dateControl = dateObj;
    var now =  new Date();
    this.date = (dateObj.value.length > 0) ? new Date(dateObj.value.toDate(this.dateFormatStyle)) : now.format(this.dateFormatStyle).toDate(this.dateFormatStyle) ;//2008-01-29 寒羽枫添加 → 若为空则根据dateFormatStyle初始化日期

    if(this.panel.innerHTML==""||cal.dateFormatStyleOld != cal.dateFormatStyle)//2008-01-29 把构造表格放在此处,2009-03-03 若请示的样式改变,则重新初始化
    {
        this.draw();
        this.bindYear();
        this.bindMonth();
        this.bindHour();
        this.bindMinute();
        this.bindSecond();
    }
    this.year = this.date.getFullYear();
    this.month = this.date.getMonth();
    this.day = this.date.getDate();
    this.hour = this.date.getHours();
    this.minute = this.date.getMinutes();
    this.second = this.date.getSeconds();
    this.changeSelect();
    this.bindData();

    if (popControl == null){
        popControl = dateObj;
    }
    var xy = this.getAbsPoint(popControl);
    //this.panel.style.left = xy.x + "px";
    //this.panel.style.top = (xy.y + dateObj.offsetHeight) + "px";
    this.panel.style.left = (xy.x + leftX)+ "px"; //由寒羽枫 2007-02-11 修改 → 加入自定义偏移量
    this.panel.style.top = (xy.y + topY + dateObj.offsetHeight) + "px";

    //由寒羽枫 2006-06-25 修改 → 把 visibility 变为 display,并添加失去焦点的事件  //this.setDisplayStyle("select", "hidden");
    //this.panel.style.visibility = "visible";
    //this.container.style.visibility = "visible";
    this.panel.style.display = "";
    this.container.style.display = "";

    if( !this.dateControl.isTransEvent)
    {
        this.dateControl.isTransEvent = true;
        /* 已写在返回值的时候  ReturnDate 函数中,去除验证事件的函数
    this.dateControl.changeEvent = this.dateControl.onchange;//将 onchange 转成其它函数,以免触发验证事件
    this.dateControl.onchange = function()
    {if(typeof(this.changeEvent) =='function'){this.changeEvent();}}*/
        if(this.dateControl.onblur != null){
            this.dateControl.blurEvent = this.dateControl.onblur;}//2007-09-14 保存主文本框的 onblur ,使其原本的事件不被覆盖
        this.dateControl.onblur = function()
        {calendar.onblur();if(typeof(this.blurEvent) =='function'){this.blurEvent();}
        }
    }

    this.container.onmouseover = function(){isFocus=true;}
    this.container.onmouseout = function(){isFocus=false;}
}

// 隐藏日历
Calendar.prototype.hide = function() {
    //this.setDisplayStyle("select", "visible");
    //this.panel.style.visibility = "hidden";
    //this.container.style.visibility = "hidden";
    this.panel.style.display = "none";
    this.container.style.display = "none";
    isFocus=false;
}

//焦点转移时隐藏日历 → 由寒羽枫 2006-06-25 添加
Calendar.prototype.onblur = function() {
    if(!isFocus){this.hide();}
}

//以下由寒羽枫 2007-07-26 修改 → 确保日历容器节点在 body 最后,否则 FireFox 中不能出现在最上方
function InitContainerPanel() //初始化容器
{
    var str = '<div id="calendarPanel" style="position: absolute;display: none;z-index:9999; background-color: #FFFFFF;border: 1px solid #CCCCCC;width:175px;font-size:12px;"></div>';
    if(document.all)
    {
        str += '<iframe style="position:absolute;z-index:2000;width:expression(this.previousSibling.offsetWidth);';
        str += 'height:expression(this.previousSibling.offsetHeight);';
        str += 'left:expression(this.previousSibling.offsetLeft);top:expression(this.previousSibling.offsetTop);';
        str += 'display:expression(this.previousSibling.style.display);" scrolling="no" frameborder="no"></iframe>';
    }
    var div = document.createElement("div");
    div.innerHTML = str;
    div.id = "ContainerPanel";
    div.style.display ="none";
    document.body.appendChild(div);
}//调用calendar.show(dateControl, popControl);
//-->
<!--
var cal;
var isFocus=false; //是否为焦点
var pickMode ={
    "second":1,
    "minute":2,
    "hour":3,
    "day":4,
    "month":5,
    "year":6  };

var topY=0,leftX=0;  //自定义定位偏移量 2007-02-11 由 寒羽枫添加
//选择日期 → 由 寒羽枫 2007-06-10 添加,通过 ID 来选日期
function SelectDateById(id,strFormat,x,y)
{
    var obj = document.getElementById(id);
    if(obj == null){return false;}
    obj.focus();
    if(obj.onclick != null){obj.onclick();}
    else if(obj.click != null){obj.click();}
    else{SelectDate(obj,strFormat,x,y)}
}

//选择日期 → 由 寒羽枫 2006-06-25 添加
function SelectDate(obj,strFormat,x,y,dateDisplayId)
{  dateDisplay=document.getElementById(dateDisplayId);

    leftX =(x == null) ? leftX : x;
    topY  =(y == null) ? topY : y;//自定义定位偏移量 2007-02-11 由 寒羽枫添加
    if(document.getElementById("ContainerPanel")==null){InitContainerPanel();}
    var date = new Date();
    var by = date.getFullYear()-10;  //最小值 → -x 年前
    var ey = date.getFullYear() + 1;  //最大值 → +x 年后
    //cal = new Calendar(by, ey,1,strFormat);    //初始化英文版,0 为中文版
    cal = (cal==null) ? new Calendar(by, ey, 0) : cal;    //不用每次都初始化 2006-12-03 修正
    cal.DateMode =pickMode["second"]; //复位
    if(strFormat.indexOf('s')< 0) {cal.DateMode =pickMode["minute"];}//精度为分
    if(strFormat.indexOf('m')< 0) {cal.DateMode =pickMode["hour"];}//精度为时
    if(strFormat.indexOf('h')< 0) {cal.DateMode =pickMode["day"];}//精度为日
    if(strFormat.indexOf('d')< 0) {cal.DateMode =pickMode["month"];}//精度为月
    if(strFormat.indexOf('M')< 0) {cal.DateMode =pickMode["year"];}//精度为年
    if(strFormat.indexOf('y')< 0) {cal.DateMode =pickMode["second"];}//默认精度为秒
    cal.dateFormatStyleOld = cal.dateFormatStyle;
    cal.dateFormatStyle = strFormat;
    cal.show(obj);
}
/**//**//**//**//**//**//**//**
 * 返回日期
 * @param d the delimiter
 * @param p the pattern of your date
 2006-06-25 由 寒羽枫 修改为根据用户指定的 style 来确定;
 */
String.prototype.toDate = function(style) {
    var y = this.substring(style.indexOf('y'),style.lastIndexOf('y')+1);//年
    var M = this.substring(style.indexOf('M'),style.lastIndexOf('M')+1);//月
    var d = this.substring(style.indexOf('d'),style.lastIndexOf('d')+1);//日
    var h = this.substring(style.indexOf('h'),style.lastIndexOf('h')+1);//时
    var m = this.substring(style.indexOf('m'),style.lastIndexOf('m')+1);//分
    var s = this.substring(style.indexOf('s'),style.lastIndexOf('s')+1);//秒

    if(s == null ||s == "" || isNaN(s)) {s = new Date().getSeconds();}
    if(m == null ||m == "" || isNaN(m)) {m = new Date().getMinutes();}
    if(h == null ||h == "" || isNaN(h)) {h = new Date().getHours();}
    if(d == null ||d == "" || isNaN(d)) {d = new Date().getDate();}
    if(M == null ||M == "" || isNaN(M)) {M = new Date().getMonth()+1;}
    if(y == null ||y == "" || isNaN(y)) {y = new Date().getFullYear();}
    var dt ;
    eval ("dt = new Date('"+ y+"', '"+(M-1)+"','"+ d+"','"+ h+"','"+ m+"','"+ s +"')");
    return dt;
}

/**//**//**//**//**//**//**//**
 * 格式化日期
 * @param   d the delimiter
 * @param   p the pattern of your date
 * @author  meizz
 */
Date.prototype.format = function(style) {
    var o = {
        "M+" : this.getMonth() + 1, //month
        "d+" : this.getDate(),      //day
        "h+" : this.getHours(),     //hour
        "m+" : this.getMinutes(),   //minute
        "s+" : this.getSeconds(),   //second
        "w+" : "天一二三四五六".charAt(this.getDay()),   //week
        "q+" : Math.floor((this.getMonth() + 3) / 3),  //quarter
        "S"  : this.getMilliseconds() //millisecond
    }
    if(/(y+)/.test(style)) {
        style = style.replace(RegExp.$1,
        (this.getFullYear() + "").substr(4 - RegExp.$1.length));
    }
    for(var k in o){
        if(new RegExp("("+ k +")").test(style)){
            style = style.replace(RegExp.$1,
            RegExp.$1.length == 1 ? o[k] :
                ("00" + o[k]).substr(("" + o[k]).length));
        }
    }
    return style;
}

//2007-09-14  由寒羽枫添加返回所选日期
Calendar.prototype.ReturnDate = function(dt) {
   // alert("aegwaweg");
   // if (this.dateControl != null){this.dateControl.value = dt;}
   //var inputObj =document.getElementById("inputs");
   //inputObj.value=dt;
   dateDisplay.value=dt;
    calendar.hide();
    if(this.dateControl.onchange == null){return;}
    //将 onchange 转成其它函数,以免触发验证事件
    var ev = this.dateControl.onchange.toString(); //找出函数的字串
    ev = ev.substring(
    ((ev.indexOf("ValidatorOnChange();")> 0) ? ev.indexOf("ValidatorOnChange();") + 20 : ev.indexOf("{") + 1)
    , ev.lastIndexOf("}"));//去除验证函数 ValidatorOnChange();
    var fun = new Function(ev);  //重新定义函数
    this.dateControl.changeEvent = fun;
    this.dateControl.changeEvent();//触发自定义 changeEvent 函数
}

/**//**//**//**//**//**//**//**
 * 日历类
 * @param   beginYear 1990
 * @param   endYear   2010
 * @param   lang      0(中文)|1(英语) 可自由扩充
 * @param   dateFormatStyle  "yyyy-MM-dd";
 * @version 2006-04-01
 * @author  KimSoft (jinqinghua [at] gmail.com)
 * @update
 */
function Calendar(beginYear, endYear, lang, dateFormatStyle) {
    this.beginYear = 1950;
    this.endYear = 2050;
    this.lang = 0;            //0(中文) | 1(英文)
    this.dateFormatStyle = "yyyy-MM-dd hh:mm:ss";

    if (beginYear != null && endYear != null){
        this.beginYear = beginYear;
        this.endYear = endYear;
    }
    if (lang != null){
        this.lang = lang
    }

    if (dateFormatStyle != null){
        this.dateFormatStyle = dateFormatStyle
    }

    this.dateControl = null;
    this.panel = this.getElementById("calendarPanel");
    this.container = this.getElementById("ContainerPanel");
    this.form  = null;

    this.date = new Date();
    this.year = this.date.getFullYear();
    this.month = this.date.getMonth();

    this.day = this.date.getDate();
    this.hour = this.date.getHours();
    this.minute = this.date.getMinutes();
    this.second = this.date.getSeconds();

    this.colors = {
        "cur_word"      : "#FFFFFF",  //当日日期文字颜色
        "cur_bg"        : "#00FF00",  //当日日期单元格背影色
        "sel_bg"        : "#FFCCCC",  //已被选择的日期单元格背影色 2006-12-03 寒羽枫添加
        "sun_word"      : "#FF0000",  //星期天文字颜色
        "sat_word"      : "#0000FF",  //星期六文字颜色
        "td_word_light" : "#333333",  //单元格文字颜色
        "td_word_dark"  : "#CCCCCC",  //单元格文字暗色
        "td_bg_out"     : "#EFEFEF",  //单元格背影色
        "td_bg_over"    : "#FFCC00",  //单元格背影色
        "tr_word"       : "#FFFFFF",  //日历头文字颜色
        "tr_bg"         : "#666666",  //日历头背影色
        "input_border"  : "#CCCCCC",  //input控件的边框颜色
        "input_bg"      : "#EFEFEF"   //input控件的背影色
    }
    /* //2008-01-29 放到了 show ,因为要做 pickMode 判断
  this.draw();
  this.bindYear();
  this.bindMonth();
     */
    //this.changeSelect();
    //this.bindData(); //2006-12-30 由民工.砖家注释
}

/**//**//**//**//**//**//**//**
 * 日历类属性(语言包,可自由扩展)
 */
Calendar.language = {
    "year"   : [[""], [""]],
    "months" : [["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],
        ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]
    ],
    "weeks"  : [["S","M","T","W","T","F","S"],
        ["S","M","T","W","T","F","S"]
    ],
    "hour"  : [["时"], ["H"]],
    "minute"  : [["分"], ["M"]],
    "second"  : [["秒"], ["S"]],
    "clear"  : [["clear"], ["CLS"]],
    "today"  : [["today"], ["TODAY"]],
    "pickTxt"  : [["确定"], ["OK"]],//pickMode 精确到年、月时把today变成“确定”
    "close"  : [["close"], ["CLOSE"]]
}

Calendar.prototype.draw = function() {
    calendar = this;

    var mvAry = [];
    //mvAry[mvAry.length]  = '  <form name="calendarForm" style="margin: 0px;">'; //因 <form> 不能嵌套, 2006-12-01 由寒羽枫改用 Div
    mvAry[mvAry.length]  = '  <div name="calendarForm" style="margin: 0px;">';
    mvAry[mvAry.length]  = '    <table width="100%" border="0" cellpadding="0" cellspacing="1" style="font-size:12px;">';
    mvAry[mvAry.length]  = '      <tr>';
    mvAry[mvAry.length]  = '        <th align="left" width="1%"><input style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:16px;height:20px;';
    if(calendar.DateMode > pickMode["month"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到年时隐藏“月”
    mvAry[mvAry.length]  ='" name="prevMonth" type="button" id="prevMonth" value="&lt;" /></th>';
    mvAry[mvAry.length]  = '        <th align="center" width="98%" nowrap="nowrap"><select name="calendarYear" id="calendarYear" style="font-size:12px;"></select><select name="calendarMonth" id="calendarMonth" style="font-size:12px;';
    if(calendar.DateMode > pickMode["month"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到年时隐藏“月”
    mvAry[mvAry.length]  = '"></select></th>';
    mvAry[mvAry.length]  = '        <th align="right" width="1%"><input style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:16px;height:20px;';
    if(calendar.DateMode > pickMode["month"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到年时隐藏“月”
    mvAry[mvAry.length]  ='" name="nextMonth" type="button" id="nextMonth" value="&gt;" /></th>';
    mvAry[mvAry.length]  = '      </tr>';
    mvAry[mvAry.length]  = '    </table>';
    mvAry[mvAry.length]  = '    <table id="calendarTable" width="100%" style="border:0px solid #CCCCCC;background-color:#FFFFFF;font-size:12px;';
    if(calendar.DateMode >= pickMode["month"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到年、月时隐藏“天”
    mvAry[mvAry.length]  = '" border="0" cellpadding="3" cellspacing="1">';
    mvAry[mvAry.length]  = '      <tr>';
    for(var i = 0; i < 7; i++) {
        mvAry[mvAry.length]  = '      <th style="font-weight:normal;background-color:' + calendar.colors["tr_bg"] + ';color:' + calendar.colors["tr_word"] + ';">' + Calendar.language["weeks"][this.lang][i] + '</th>';
    }
    mvAry[mvAry.length]  = '      </tr>';
    for(var i = 0; i < 6;i++){
        mvAry[mvAry.length]  = '    <tr align="center">';
        for(var j = 0; j < 7; j++) {
            if (j == 0){
                mvAry[mvAry.length]  = '  <td style="cursor:default;color:' + calendar.colors["sun_word"] + ';"></td>';
            } else if(j == 6) {
                mvAry[mvAry.length]  = '  <td style="cursor:default;color:' + calendar.colors["sat_word"] + ';"></td>';
            } else {
                mvAry[mvAry.length]  = '  <td style="cursor:default;"></td>';
            }
        }
        mvAry[mvAry.length]  = '    </tr>';
    }

    //2009-03-03 添加的代码,放置时间的行
    mvAry[mvAry.length]  = '      <tr style="';
    if(calendar.DateMode >= pickMode["day"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到时日隐藏“时间”
    mvAry[mvAry.length]  = '"><td align="center" colspan="7">';
    mvAry[mvAry.length]  = '      <select name="calendarHour" id="calendarHour" style="font-size:12px;"></select>' + Calendar.language["hour"][this.lang];
    mvAry[mvAry.length]  = '<span style="'
    if(calendar.DateMode >= pickMode["hour"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到小时时隐藏“分”
    mvAry[mvAry.length]  = '"><select name="calendarMinute" id="calendarMinute" style="font-size:12px;"></select>' + Calendar.language["minute"][this.lang]+'</span>';
    mvAry[mvAry.length]  = '<span style="'
    if(calendar.DateMode >= pickMode["minute"]){mvAry[mvAry.length]  = 'display:none;';}//pickMode 精确到小时、分时隐藏“秒”
    mvAry[mvAry.length]  = '"><select name="calendarSecond" id="calendarSecond" style="font-size:12px;"></select>'+ Calendar.language["second"][this.lang]+'</span>';
    mvAry[mvAry.length]  = '      </td></tr>';

    mvAry[mvAry.length]  = '    </table>';
    //mvAry[mvAry.length]  = '  </from>';
    mvAry[mvAry.length]  = '      <div align="center" style="padding:4px 4px 4px 4px;background-color:' + calendar.colors["input_bg"] + ';">';
    mvAry[mvAry.length]  = '        <input name="calendarClear" type="button" id="calendarClear" value="' + Calendar.language["clear"][this.lang] + '" style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:40px;height:20px;font-size:12px;cursor:pointer;"/>';
    mvAry[mvAry.length]  = '        <input name="calendarToday" type="button" id="calendarToday" value="'
    mvAry[mvAry.length]  = (calendar.DateMode == pickMode["day"]) ? Calendar.language["today"][this.lang] : Calendar.language["pickTxt"][this.lang];
    mvAry[mvAry.length]  = '" style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:60px;height:20px;font-size:12px;cursor:pointer"/>';
    mvAry[mvAry.length]  = '        <input name="calendarClose" type="button" id="calendarClose" value="' + Calendar.language["close"][this.lang] + '" style="border: 1px solid ' + calendar.colors["input_border"] + ';background-color:' + calendar.colors["input_bg"] + ';width:40px;height:20px;font-size:12px;cursor:pointer"/>';
    mvAry[mvAry.length]  = '      </div>';

    mvAry[mvAry.length]  = '  </div>';
    this.panel.innerHTML = mvAry.join("");

    /**//**//**//******** 以下代码由寒羽枫 2006-12-01 添加 **********/
    var obj = this.getElementById("prevMonth");
    obj.onclick = function () {calendar.goPrevMonth(calendar);}
    obj.onblur = function () {calendar.onblur();}
    this.prevMonth= obj;

    obj = this.getElementById("nextMonth");
    obj.onclick = function () {calendar.goNextMonth(calendar);}
    obj.onblur = function () {calendar.onblur();}
    this.nextMonth= obj;

    obj = this.getElementById("calendarClear");
    obj.onclick = function ()
    { calendar.ReturnDate(""); /*calendar.dateControl.value = "";calendar.hide();*///2007-09-14 由寒羽枫注释
    }
    this.calendarClear = obj;

    obj = this.getElementById("calendarClose");
    obj.onclick = function () {calendar.hide();}
    this.calendarClose = obj;

    obj = this.getElementById("calendarYear");
    obj.onchange = function () {calendar.update(calendar);}
    obj.onblur = function () {calendar.onblur();}
    this.calendarYear = obj;

    obj = this.getElementById("calendarMonth");
    with(obj)
    {
        onchange = function () {calendar.update(calendar);}
        onblur = function () {calendar.onblur();}
    }this.calendarMonth = obj;

    obj = this.getElementById("calendarHour");
    obj.onchange = function () {calendar.hour = this.options[this.selectedIndex].value;}
    obj.onblur = function () {calendar.onblur();}
    this.calendarHour = obj;

    obj = this.getElementById("calendarMinute");
    obj.onchange = function () {calendar.minute = this.options[this.selectedIndex].value;}
    obj.onblur = function () {calendar.onblur();}
    this.calendarMinute = obj;

    obj = this.getElementById("calendarSecond");
    obj.onchange = function () {calendar.second = this.options[this.selectedIndex].value;}
    obj.onblur = function () {calendar.onblur();}
    this.calendarSecond = obj;

    obj = this.getElementById("calendarToday");
    obj.onclick = function () {
        var today = (calendar.DateMode != pickMode["day"]) ?
            new Date(calendar.year,calendar.month,calendar.day,calendar.hour,calendar.minute,calendar.second)
        : new Date();//2008-01-29
        calendar.ReturnDate(today.format(calendar.dateFormatStyle));
    }
    this.calendarToday = obj;
}

//年份下拉框绑定数据
Calendar.prototype.bindYear = function() {
    var cy = this.calendarYear;//2006-12-01 由寒羽枫修改
    cy.length = 0;
    for (var i = this.beginYear; i <= this.endYear; i++){
        cy.options[cy.length] = new Option(i + Calendar.language["year"][this.lang], i);
    }
}

//月份下拉框绑定数据
Calendar.prototype.bindMonth = function() {
    var cm = this.calendarMonth;//2006-12-01 由寒羽枫修改
    cm.length = 0;
    for (var i = 0; i < 12; i++){
        cm.options[cm.length] = new Option(Calendar.language["months"][this.lang][i], i);
    }
}

//小时下拉框绑定数据
Calendar.prototype.bindHour = function() {
    var ch = this.calendarHour;
    if(ch.length > 0){return;}//2009-03-03 不需要重新绑定,提高性能
    //ch.length = 0;
    var h;
    for (var i = 0; i < 24; i++){
        h = ("00" + i +"").substr(("" + i).length);
        ch.options[ch.length] = new Option(h, h);
    }
}

//分钟下拉框绑定数据
Calendar.prototype.bindMinute = function() {
    var cM = this.calendarMinute;
    if(cM.length > 0){return;}//2009-03-03 不需要重新绑定,提高性能
    //cM.length = 0;
    var M;
    for (var i = 0; i < 60; i++){
        M = ("00" + i +"").substr(("" + i).length);
        cM.options[cM.length] = new Option(M, M);
    }
}

//秒钟下拉框绑定数据
Calendar.prototype.bindSecond = function() {
    var cs = this.calendarSecond;
    if(cs.length > 0){return;}//2009-03-03 不需要重新绑定,提高性能
    //cs.length = 0;
    var s;
    for (var i = 0; i < 60; i++){
        s = ("00" + i +"").substr(("" + i).length);
        cs.options[cs.length] = new Option(s, s);
    }
}

//向前JAN
Calendar.prototype.goPrevMonth = function(e){
    if (this.year == this.beginYear && this.month == 0){return;}
    this.month--;
    if (this.month == -1) {
        this.year--;
        this.month = 11;
    }
    this.date = new Date(this.year, this.month, 1);
    this.changeSelect();
    this.bindData();
}

//向后JAN
Calendar.prototype.goNextMonth = function(e){
    if (this.year == this.endYear && this.month == 11){return;}
    this.month++;
    if (this.month == 12) {
        this.year++;
        this.month = 0;
    }
    this.date = new Date(this.year, this.month, 1);
    this.changeSelect();
    this.bindData();
}

//改变SELECT选中状态
Calendar.prototype.changeSelect = function() {
    var cy = this.calendarYear;//2006-12-01 由寒羽枫修改
    var cm = this.calendarMonth;
    var ch = this.calendarHour;
    var cM = this.calendarMinute;
    var cs = this.calendarSecond;
    //2006-12-30 由民工.砖家修改,减少运算次数
    cy[this.date.getFullYear()-this.beginYear].selected = true;
    cm[this.date.getMonth()].selected =true;

    //2009-03-03 添加,初始化时间的值
    ch[this.hour].selected =true;
    cM[this.minute].selected =true;
    cs[this.second].selected =true;
}

//更新年、月
Calendar.prototype.update = function (e){
    this.year  = e.calendarYear.options[e.calendarYear.selectedIndex].value;//2006-12-01 由寒羽枫修改
    this.month = e.calendarMonth.options[e.calendarMonth.selectedIndex].value;
    this.date = new Date(this.year, this.month, 1);
    //this.changeSelect();
    this.bindData();
}

//绑定数据到月视图
Calendar.prototype.bindData = function () {
    var calendar = this;
    if(calendar.DateMode >= pickMode["month"]){return;}//2008-01-29
    // var dateArray = this.getMonthViewArray(this.date.getYear(), this.date.getMonth());
    //2006-12-30 由民工.砖家修改 在Firefox 下年份错误
    var dateArray = this.getMonthViewArray(this.date.getFullYear(), this.date.getMonth());
    var tds = this.getElementById("calendarTable").getElementsByTagName("td");
    for(var i = 0; i < tds.length; i++) {
        tds[i].style.backgroundColor = calendar.colors["td_bg_out"];
        tds[i].onclick = function () {return;}
        tds[i].onmouseover = function () {return;}
        tds[i].onmouseout = function () {return;}
        if (i > dateArray.length - 1) break;
        tds[i].innerHTML = dateArray[i];
        if (dateArray[i] != "&nbsp;"){
            tds[i].bgColorTxt = "td_bg_out"; //2009-03-03 保存背景色的class
            var cur = new Date();
            tds[i].isToday = false;
            if (cur.getFullYear() == calendar.date.getFullYear() && cur.getMonth() == calendar.date.getMonth() && cur.getDate() == dateArray[i]) {
                //是today的单元格
                tds[i].style.backgroundColor = calendar.colors["cur_bg"];
                tds[i].bgColorTxt = "cur_bg";
                tds[i].isToday = true;
            }
            if(calendar.dateControl != null )
            {
                cur = calendar.dateControl.value.toDate(calendar.dateFormatStyle);
                if (cur.getFullYear() == calendar.date.getFullYear() && cur.getMonth() == calendar.date.getMonth()&& cur.getDate() == dateArray[i]) {
                    //是已被选中的单元格
                    calendar.selectedDayTD = tds[i];
                    tds[i].style.backgroundColor = calendar.colors["sel_bg"];
                    tds[i].bgColorTxt = "sel_bg";
                }
            }
            tds[i].onclick = function () {
                if(calendar.DateMode == pickMode["day"]) //2009-03-03 当选择日期时,点击格子即返回值
                {   // alert(this.innerHTML);
                    calendar.ReturnDate(new Date(calendar.date.getFullYear(),
                     calendar.date.getMonth(),
                     this.innerHTML).format(calendar.dateFormatStyle));
                }
                else
                {
                    if(calendar.selectedDayTD != null) //2009-03-03 清除已选中的背景色
                    {
                        calendar.selectedDayTD.style.backgroundColor =(calendar.selectedDayTD.isToday)? calendar.colors["cur_bg"] : calendar.colors["td_bg_out"];
                    }
                    this.style.backgroundColor = calendar.colors["sel_bg"];
                    calendar.day = this.innerHTML;
                    calendar.selectedDayTD = this; //2009-03-03 记录已选中的日子
                }
            }
            tds[i].style.cursor ="pointer"; //2007-08-06 由寒羽枫添加,鼠标变成手指状
            tds[i].onmouseover = function () {
                this.style.backgroundColor = calendar.colors["td_bg_over"];
            }
            tds[i].onmouseout = function () {
                if(calendar.selectedDayTD != this) {
                    this.style.backgroundColor = calendar.colors[this.bgColorTxt];}
            }
            tds[i].onblur = function () {calendar.onblur();}
        }
    }
}

//根据年、月得到月视图数据(数组形式)
Calendar.prototype.getMonthViewArray = function (y, m) {
    var mvArray = [];
    var dayOfFirstDay = new Date(y, m, 1).getDay();
    var daysOfMonth = new Date(y, m + 1, 0).getDate();
    for (var i = 0; i < 42; i++) {
        mvArray[i] = "&nbsp;";
    }
    for (var i = 0; i < daysOfMonth; i++){
        mvArray[i + dayOfFirstDay] = i + 1;
    }
    return mvArray;
}

//扩展 document.getElementById(id) 多浏览器兼容性 from meizz tree source
Calendar.prototype.getElementById = function(id){
    if (typeof(id) != "string" || id == "") return null;
    if (document.getElementById) return document.getElementById(id);
    if (document.all) return document.all(id);
    try {return eval(id);} catch(e){ return null;}
}

//扩展 object.getElementsByTagName(tagName)
Calendar.prototype.getElementsByTagName = function(object, tagName){
    if (document.getElementsByTagName) return document.getElementsByTagName(tagName);
    if (document.all) return document.all.tags(tagName);
}

//取得HTML控件绝对位置
Calendar.prototype.getAbsPoint = function (e){
    var x = e.offsetLeft;
    var y = e.offsetTop;
    while(e = e.offsetParent){
        x += e.offsetLeft;
        y += e.offsetTop;
    }
    return {"x": x, "y": y};
}

//显示日历
Calendar.prototype.show = function (dateObj, popControl) {
    if (dateObj == null){
        throw new Error("arguments[0] is necessary")
    }
    this.dateControl = dateObj;
    var now =  new Date();
    this.date = (dateObj.value.length > 0) ? new Date(dateObj.value.toDate(this.dateFormatStyle)) : now.format(this.dateFormatStyle).toDate(this.dateFormatStyle) ;//2008-01-29 寒羽枫添加 → 若为空则根据dateFormatStyle初始化日期

    if(this.panel.innerHTML==""||cal.dateFormatStyleOld != cal.dateFormatStyle)//2008-01-29 把构造表格放在此处,2009-03-03 若请示的样式改变,则重新初始化
    {
        this.draw();
        this.bindYear();
        this.bindMonth();
        this.bindHour();
        this.bindMinute();
        this.bindSecond();
    }
    this.year = this.date.getFullYear();
    this.month = this.date.getMonth();
    this.day = this.date.getDate();
    this.hour = this.date.getHours();
    this.minute = this.date.getMinutes();
    this.second = this.date.getSeconds();
    this.changeSelect();
    this.bindData();

    if (popControl == null){
        popControl = dateObj;
    }
    var xy = this.getAbsPoint(popControl);
    //this.panel.style.left = xy.x + "px";
    //this.panel.style.top = (xy.y + dateObj.offsetHeight) + "px";
    this.panel.style.left = (xy.x + leftX)+ "px"; //由寒羽枫 2007-02-11 修改 → 加入自定义偏移量
    this.panel.style.top = (xy.y + topY + dateObj.offsetHeight) + "px";

    //由寒羽枫 2006-06-25 修改 → 把 visibility 变为 display,并添加失去焦点的事件  //this.setDisplayStyle("select", "hidden");
    //this.panel.style.visibility = "visible";
    //this.container.style.visibility = "visible";
    this.panel.style.display = "";
    this.container.style.display = "";

    if( !this.dateControl.isTransEvent)
    {
        this.dateControl.isTransEvent = true;
        /* 已写在返回值的时候  ReturnDate 函数中,去除验证事件的函数
 this.dateControl.changeEvent = this.dateControl.onchange;//将 onchange 转成其它函数,以免触发验证事件
 this.dateControl.onchange = function()
 {if(typeof(this.changeEvent) =='function'){this.changeEvent();}}*/
        if(this.dateControl.onblur != null){
            this.dateControl.blurEvent = this.dateControl.onblur;}//2007-09-14 保存主文本框的 onblur ,使其原本的事件不被覆盖
        this.dateControl.onblur = function()
        {calendar.onblur();if(typeof(this.blurEvent) =='function'){this.blurEvent();}
        }
    }

    this.container.onmouseover = function(){isFocus=true;}
    this.container.onmouseout = function(){isFocus=false;}
}

//隐藏日历
Calendar.prototype.hide = function() {
    //this.setDisplayStyle("select", "visible");
    //this.panel.style.visibility = "hidden";
    //this.container.style.visibility = "hidden";
    this.panel.style.display = "none";
    this.container.style.display = "none";
    isFocus=false;
}

//焦点转移时隐藏日历 → 由寒羽枫 2006-06-25 添加
Calendar.prototype.onblur = function() {
    if(!isFocus){this.hide();}
}

//以下由寒羽枫 2007-07-26 修改 → 确保日历容器节点在 body 最后,否则 FireFox 中不能出现在最上方
function InitContainerPanel() //初始化容器
{
    var str = '<div id="calendarPanel" style="position: absolute;display: none;z-index:9999; background-color: #FFFFFF;border: 1px solid #CCCCCC;width:175px;font-size:12px;"></div>';
    if(document.all)
    {
        str += '<iframe style="position:absolute;z-index:2000;width:expression(this.previousSibling.offsetWidth);';
        str += 'height:expression(this.previousSibling.offsetHeight);';
        str += 'left:expression(this.previousSibling.offsetLeft);top:expression(this.previousSibling.offsetTop);';
        str += 'display:expression(this.previousSibling.style.display);" scrolling="no" frameborder="no"></iframe>';
    }
    var div = document.createElement("div");
    div.innerHTML = str;
    div.id = "ContainerPanel";
    div.style.display ="none";
    document.body.appendChild(div);
}// 调用calendar.show(dateControl, popControl);
//-->

function selectDate()
{

    	var theSpan = document.getElementById("mydate");
	var theSelect = theSpan.getElementsByTagName("select");
	var theList = theSelect[0];
	var fromInput = document.getElementById("aa").value;

	if (fromInput != null &&  fromInput != "" )
	{
		var fromSplit = fromInput.split("/");
                var intFrom = parseInt(fromSplit[0] + fromSplit[1] + fromSplit[2]);

			//遍历每一个选项,比较是否有相同的选项
  			for   (var i=0;i<theList.length;i++)
			 {
				//_____________
				var selectText = theList.options[i].text;
				var selectSubText = selectText.substring(0,10);
				var selectTextSplit = selectSubText.split("-");
                                var intSelect = parseInt(selectTextSplit[0] + selectTextSplit[1] +selectTextSplit[2]);
				if (intFrom == intSelect)
				{
					theList.options[i].selected = true;
					prepareSubmit();
				}
			}


	}

}
//***********************************************************************


    </script>


</head>
<body>



<script type="text/javascript">

//document.write("your IP:  "+IPData[0]);
 function setStyle(Obj){
	//alert(Obj.style.border);
	with(Obj){
	style.border.bottom='solid 10px red';
	//style.height="50px";
	}

	}

</script>



<script type="text/javascript">
    var dateDisplay;
//document.write("your IP:  "+IPData[0]);
//document.write("</br>Country Code:"+geoip_country_code());
//document.write("</br>Country Name:"+geoip_country_name());
//document.write("</br>Province Name:"+geoip_region_name());
//document.write("</br>City Name:"+geoip_city());
</script>
</br>
http://http://fw.qq.com/ipaddress
http://www.cssplay.co.uk/layouts/
tanwang.com
</br>
O<sub>2</sub></br>
H<sub>2</sub>o
border:solid 5px gray;
</br>
<input type="text" id="inputs" style="border:solid 1px black; background-color:slive"  onfocus="setStyle(this)"/></br>
<input type="text" value="" maxlength="100" id="aa"    onchange = "selectDate()" style="width:170px;cursor:pointer" />

<input type="text" style="width:50px"  onclick="SelectDateById('aa','yyyy\/MM\/dd')" value="choose" readonly="true"/></br>

From:<input type="text" value="" maxlength="100" id="dateFrom"    onchange = "selectDate()" style="width:170px;cursor:pointer" />
<input type="text" style="width:50px"  onclick="SelectDate(this,'yyyy\/MM\/dd',0,0,'dateFrom')" value="choose" readonly="true"/>

To:<input type="text" value="" maxlength="100" id="dateTo"    onchange = "selectDate()" style="width:170px;cursor:pointer" />

<input type="text" style="width:50px"  onclick="SelectDate(this,'yyyy\/MM\/dd',0,0,'dateTo')" value="choose" readonly="true"/>

</body>

</html>


1 楼 ldsjdy 2010-07-19  

input 标签 边框设置
<input type="text" style="border-left: solid 0px red; border-right:solid 0px blue; border-top: solid 0px gray; border-bottom:solid 3px black; background-color:slive"/>

相关推荐

    浏览器窗口放大缩小后页面内容居中解决方法

    标题“浏览器窗口放大缩小后页面内容居中解决方法”揭示了我们今天要探讨的核心问题:如何使网页内容在浏览器窗口缩放时仍然保持居中对齐。 在描述中提到了一个链接到CSDN博客的文章,虽然具体内容无法直接展示,但...

    css 半透明全屏蒙层 全屏屏蔽 内容绝对居中

    全屏蒙层与内容居中 /* 在这里插入CSS样式 */ &lt;!-- 全屏蒙层 --&gt; &lt;div id="mask"&gt;&lt;/div&gt; &lt;!-- 居中内容 --&gt; 这里是需要居中的内容 ``` 接下来,我们用CSS来实现半透明全屏蒙层。我们可以使用`...

    弹出层居中

    标题“弹出层居中”涉及的是网页设计中常见的用户界面元素布局问题,特别是使用JavaScript库如jQuery实现的弹出窗口或对话框的居中显示。在这个场景中,"TestJQueryMaskLayer"可能是一个使用jQuery实现的遮罩层插件...

    在网页中居中的若干种方法(至少6种,已经标明了对应浏览器,希望对你有用哦~)

    }` 使表格和单元格内容居中。不过,现代布局通常不推荐大量使用表格进行页面布局。 压缩包中的文件分别展示了以上方法在不同浏览器下的应用。"火狐IE两种居中方法.html" 和 "火狐IE中居中.html" 可能包含了针对IE...

    垂直居中显示ie7+

    在网页设计中,"垂直居中显示"是一个常见的需求,特别是在多设备、多屏幕尺寸的环境下,确保元素在页面上无论何时都能保持居中状态,能够提供良好的用户体验。本话题主要探讨如何在IE7及以上的浏览器中实现元素的...

    css布局居中和CSS内容居中区别和对应DIV CSS代码.docx

    在Web开发中,CSS...总之,理解和掌握CSS布局居中与内容居中是网页设计的基础,对于创建响应式和用户友好的网页至关重要。通过实践和学习相关案例,开发者能够更好地运用这些技巧来优化网页的视觉效果和用户体验。

    ASP.NET 绝对居中弹出层

    Panel控件可以作为弹出层的内容容器,而ModalPopupExtender控件则提供了一种方便的方式来弹出和关闭Panel,并且可以轻松实现居中效果。 4. **jQuery**:虽然JavaScript已经足够强大,但jQuery库的引入可以使代码...

    DIV+CSS 图片垂直居中效果

    在网页设计中,"DIV+CSS 图片垂直居中效果"是一个常见的布局需求,它涉及到CSS的盒模型、定位和Flexbox或Grid等现代布局技术。以下是对这一主题的详细阐述: 1. **基础概念** - **DIV**:HTML中的`&lt;div&gt;`元素是一...

    内容自适应垂直居中源码

    在网页设计中,内容自适应垂直居中是一种常见的布局需求,尤其在响应式设计中更为重要。这个压缩包“内容自适应垂直居中源码”包含了一个名为“内容自适应垂直居中.html”的文件,很可能是为了展示如何实现这一功能...

    带关闭倒计时的广告代码网页居中悬浮适合网页

    开发者只需要在自己的网页中引入这个JS文件,并根据需要配置广告内容和倒计时参数,就能在网站上实现这一功能。同时,为了确保广告不干扰用户浏览,通常还会添加一个明显的关闭按钮,用户可以点击它提前结束广告的...

    页码居中插件

    在网页设计和开发中,居中布局是一种常见的需求,它能提供整洁且视觉平衡的用户体验。"页码居中插件"就是针对这种情况而设计的一个工具,它专注于帮助开发者轻松实现页面元素的居中对齐。这个插件的出现极大地简化了...

    浏览器窗口放大缩小后页面内容居中解决方法(qqyangwang)

    在网页设计中,确保页面内容在不同屏幕尺寸和浏览器窗口大小下都能保持居中是非常重要的。这不仅可以提供良好的用户体验,也...通过灵活运用这些技术,我们可以创建出适应各种屏幕尺寸、始终保持内容居中的优秀网页。

    HTML之三种居中

    表格布局能够帮助开发者有效地管理网页内容的位置关系,尤其是在实现页面元素的居中方面。对于左右居中,可以通过设置`align`属性为`center`来实现。 **示例代码:** ```html 内容 ``` 在此代码中,`align...

    使用bootstrap的H5页面登录框自适应水平居中、垂直居中

    Bootstrap是世界上最受欢迎的前端开发框架之一,用于快速构建响应式和移动优先的网站。在创建H5页面时,我们常常需要实现登录框等组件在不同屏幕尺寸下的自适应水平居中和垂直居中。在标题和描述中提到的问题,即在...

    自适应居中图片轮播

    自适应布局(Responsive Web Design)是现代网页设计的核心概念之一,它旨在确保网站在各种屏幕尺寸和设备上都能提供良好的用户体验。自适应布局通常通过媒体查询(Media Queries)、流式布局(Fluid Grids)和弹性...

    一个jquery.fullPage实例,解决了居中问题。分享给大家。

    然而,在实际应用中,用户可能会遇到一些问题,比如内容居中对齐的问题。在你提供的实例中,最初下载的jQuery.fullPage可能并未完美解决内容的居中问题。居中对齐在网页设计中是一个常见的需求,它可以使页面看起来...

    div+css垂直居中和水平居中

    `属性可以轻松地将文本内容在div内居中对齐。例如: ```css .container { text-align: center; } ``` 2. **多行文本水平居中**: 对于多行文本,`display: flex;`和`justify-content: center;`组合可以实现...

    CSS网页布局DIV水平居中的各种方法

    在CSS网页布局中,使一个DIV元素水平居中是常见的需求,这有助于创建美观且响应式的网站设计。本文将详细探讨几种实现DIV水平居中的方法。 1. **使用`margin: 0 auto`** 这是现代浏览器中最常用的方法。通过设置...

    div内内容文本水平居中.docx

    DIV 内容文本水平居中的实现方法 在 HTML 和 CSS 中,`div` 元素是最常用的元素之一,它可以用来框架网页的结构和布局。然而,在 `div` 元素中设置文本水平居中是一个常见的需求,今天我们就来探讨如何实现 `div` ...

    javascript IE窗口居中

    JavaScript是一种广泛应用于网页和网络应用的脚本语言,它允许开发者在用户与网页交互时动态更新内容,创建交互式体验。 在描述中提到的博文链接虽然没有提供具体内容,但我们可以推测其可能讲解了如何通过...

Global site tag (gtag.js) - Google Analytics