| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2005 人关注过本帖
标题:我想在选今天时显示日期的月份和日期如果是个位数的话前面加个0.
只看楼主 加入收藏
fabregs
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2008-6-20
收藏
 问题点数:0 回复次数:2 
我想在选今天时显示日期的月份和日期如果是个位数的话前面加个0.
以下是我JS代码,请高手指导。

var glbObjPointer = "";

function PopupCalendar(InstanceName)
{
    ///Global Tag
    this.instanceName=InstanceName;
    ///Properties
    this.separator="-"
    this.oBtnTodayTitle="Today"
    this.oBtnCancelTitle="Cancel"
    this.oBtnCleanTitle="Clean"
    this.weekDaySting=new Array("S","M","T","W","T","F","S");
    this.monthSting=new Array

("January","February","March","April","May","June","July","August","September","October","November","December");
    this.Width=200;
    this.currDate=new Date();
    this.today=new Date();
    this.startYear=1970;
    this.endYear=2020;
    ///Css
    this.divBorderCss="1px solid #BCD0DE";
    this.tableBorderColor="#CCCCCC"
    ///Method
    this.Init=CalendarInit;
    this.Fill=CalendarFill;
    this.Refresh=CalendarRefresh;
    this.Restore=CalendarRestore;
    ///HTMLObject
    this.oTaget=null;
    this.oPreviousCell=null;
    this.sDIVID=InstanceName+"oDiv";
    this.sTABLEID=InstanceName+"oTable";
    this.sMONTHID=InstanceName+"oMonth";
    this.sYEARID=InstanceName+"oYear";           
}
function CalendarInit()             ///Create panel
{
    var sMonth,sYear
    sMonth=this.currDate.getMonth();
    sYear=this.currDate.getYear();
    if ( document.all){
       htmlAll="<div id='"+this.sDIVID+"'

style='display:none;position:absolute;width:130px;border:"+this.divBorderCss+";padding:1px;background-color:#FFFFFF;z-

index:100';>";
    }else{
       htmlAll="<div id='"+this.sDIVID+"'

style='display:none;position:absolute;width:130px;border:"+this.divBorderCss+";padding:1px;background-color:#FFFFFF;z-

index:100';>";
    }
    //htmlAll+="<div align='lfet'>";
    /// Month
    htmloMonth="<select id='"+this.sMONTHID+"' onchange=CalendarMonthChange("+this.instanceName+")

style='width:60px;background-color:#ffffff;'>";//月背景色(白)
    for(i=0;i<12;i++)
    {           
        htmloMonth+="<option value='"+i+"'>"+this.monthSting[i]+"</option>";
    }
    htmloMonth+="</select>";
    /// Year
    htmloYear="<select id='"+this.sYEARID+"' onchange=CalendarYearChange("+this.instanceName+") style='width:60px;background

-color:#ffffff;'>";//年背景色(白)
    for(i=this.startYear;i<=this.endYear;i++)
    {
        htmloYear+="<option value='"+i+"'>"+i+"</option>";
    }
    htmloYear+="</select>";
    /// Day
    htmloDayTable="<table id='"+this.sTABLEID+"' width='130' border=0 cellpadding=0 cellspacing=1

bgcolor='"+this.tableBorderColor+"'>";
    htmloDayTable+="<tbody bgcolor='#ffffff' style='font-size:10px;'>";
    for(i=0;i<=6;i++)
    {
        if(i==0)
            htmloDayTable+="<tr bgcolor='#C2C2C2'>";//星期背景色(灰色)
        else
            htmloDayTable+="<tr>";
        for(j=0;j<7;j++)
        {
            if(i==0)
            {
                htmloDayTable+="<td height='14' align='center' valign='middle' style='cursor:hand;font-size:12px;'>";
                htmloDayTable+=this.weekDaySting[j]+"</td>"
            }
            else
            {
                htmloDayTable+="<td height='14' align='center' valign='middle' style='cursor:hand;font-size:12px;'";
                htmloDayTable+=" onmouseover=CalendarCellsMsOver("+this.instanceName+")";
                htmloDayTable+=" onmouseout=CalendarCellsMsOut("+this.instanceName+")";
                htmloDayTable+=" onclick=CalendarCellsClick(this,"+this.instanceName+")>";
                htmloDayTable+="&nbsp;</td>"
            }
        }
        htmloDayTable+="</tr>";
    }
    htmloDayTable+="</tbody></table>";
    /// Today Button
    htmloButton="<div align='center' style='padding:1px'>"
    htmloButton+="<button style='width:35px;height:16px;border:1px solid #BCD0DE;background-color:#eeeeee;cursor:hand;font-

size:12px;'"
    htmloButton+=" onclick=CalendarTodayClick("+this.instanceName+")>"+this.oBtnTodayTitle+"</button>&nbsp;"
    htmloButton+="<button style='width:35px;height:16px;border:1px solid #BCD0DE;background-color:#eeeeee;cursor:hand;font-

size:12px;'"
    htmloButton+="onclick=clearInput("+this.instanceName+")>"+this.oBtnCleanTitle+"</button>&nbsp;"
    htmloButton+="<button style='width:35px;height:16px;border:1px solid #BCD0DE;background-color:#eeeeee;cursor:hand;font-

size:12px;'"
    htmloButton+=" onclick=CalendarCancel("+this.instanceName+")>"+this.oBtnCancelTitle+"</button> "
    htmloButton+="</div>"
    /// All
    htmlAll=htmlAll+htmloYear+htmloMonth+htmloDayTable+htmloButton+"</div>";
    document.write(htmlAll);
    this.Fill();   
}
function CalendarFill()         ///
{
    var sMonth,sYear,sWeekDay,sToday,oTable,currRow,MaxDay,sDaySn,sIndex,rowIndex,cellIndex,oSelectMonth,oSelectYear
    sMonth=this.currDate.getMonth();
    //dt = new Date();
    //alert(dt);
    sYear=this.currDate.getFullYear();
    sWeekDay=(new Date(sYear,sMonth,1)).getDay();
    sToday=this.currDate.getDate();
    //oTable=document.all[this.sTABLEID];
    oTable = document.getElementById(this.sTABLEID);
    currRow=oTable.rows[1];
    MaxDay=CalendarGetMaxDay(sYear,sMonth);
   
    //oSelectMonth=document.all[this.sMONTHID]
    oSelectMonth = document.getElementById(this.sMONTHID);   
    oSelectMonth.selectedIndex=sMonth;
    //oSelectYear=document.all[this.sYEARID]
    oSelectYear = document.getElementById(this.sYEARID);
    //alert(oSelectYear.options[0].value);

    for(i=0;i<oSelectYear.length;i++)
        {
        if(parseInt(oSelectYear.options[i].value)==sYear)oSelectYear.selectedIndex=i;
    }
    ////
    for(sDaySn=1,sIndex=sWeekDay;sIndex<=6;sDaySn++,sIndex++)
    {
        if(sDaySn==sToday)
        {
            currRow.cells[sIndex].innerHTML="<font color=red><i><b>"+sDaySn+"</b></i></font>";
            this.oPreviousCell=currRow.cells[sIndex];               
        }
        else
        {
            currRow.cells[sIndex].innerHTML=sDaySn;
            currRow.cells[sIndex].style.color="#666666";   
        }
        CalendarCellSetCss(0,currRow.cells[sIndex]);

    }
    for(rowIndex=2;rowIndex<=6;rowIndex++)
    {
        if(sDaySn>MaxDay)break;
        currRow=oTable.rows[rowIndex];
        for(cellIndex=0;cellIndex<currRow.cells.length;cellIndex++)
        {
            if(sDaySn==sToday)
            {
                currRow.cells[cellIndex].innerHTML="<font color=red><i><b>"+sDaySn+"</b></i></font>";
                this.oPreviousCell=currRow.cells[cellIndex];
            }
            else
            {
                currRow.cells[cellIndex].innerHTML=sDaySn;  
                currRow.cells[cellIndex].style.color="#666666";
            }
            CalendarCellSetCss(0,currRow.cells[cellIndex]);
            sDaySn++;
            if(sDaySn>MaxDay)break;
        }     
    }
    glbObjPointer.value = sYear + "-" + (sMonth+1)+ "-" + sToday;
    if(!this.instanceName)    {
        document.getElementById(this.sDIVID).style.display="block";    
    }else    {
        document.getElementById(this.sDIVID).style.display="none";
    }
    //
}
function CalendarRestore()                  /// Clear Data
{   
    var oTable
    //oTable=document.all[this.sTABLEID]
    oTable = document.getElementById(this.sTABLEID);
    for(i=1;i<oTable.rows.length;i++)
    {
        for(j=0;j<oTable.rows[i].cells.length;j++)
        {
            CalendarCellSetCss(0,oTable.rows[i].cells[j]);
            oTable.rows[i].cells[j].innerHTML="&nbsp;";
        }
    }   
}
function CalendarRefresh(newDate)                   ///
{
    this.currDate=newDate;
    this.Restore();
    this.Fill();   
}
function CalendarCellsMsOver(oInstance)             /// Cell MouseOver
{
    var myCell
    myCell=event.srcElement;                        //????
    CalendarCellSetCss(0,oInstance.oPreviousCell);
    if(myCell)
    {
        CalendarCellSetCss(1,myCell);
        oInstance.oPreviousCell=myCell;
    }
}
function CalendarCellsMsOut(oInstance)              ////// Cell MouseOut
{
    var myCell
    myCell=event.srcElement;                        //??????
    CalendarCellSetCss(0,myCell);   
}
function CalendarCellsClick(oCell,oInstance)
{
    //alert(oCell.innerText);
    var sDay,sMonth,sYear,newDate
    sYear=oInstance.currDate.getFullYear();
    //alert(sYear);
    //alert('dddddddddddddd');
    sMonth=oInstance.currDate.getMonth();
    //alert(sMonth);
    sDay=oInstance.currDate.getDate();
    //alert('|'+ oCell.innerHTML + '|');
   
    if (document.all){
       txt = oCell.innerText;
    }else{
       txt = oCell.innerHTML;
       if ( txt == '&nbsp;' ){
        txt = " ";
        }
        else if(txt.indexOf('<b>') != -1){
           txt = txt.substring(txt.indexOf('<b>')+3,txt.length);
           txt = txt.substring(0,txt.indexOf('</b>'));
        }
    }
    if(txt != " ")
    {
        sDay=txt;//parseInt(oCell.innerText);
        if(sDay!=oInstance.currDate.getDate())
        {
            newDate=new Date(sYear,sMonth,sDay);
            oInstance.Refresh(newDate);
        }
    }
    sDateString=sYear+oInstance.separator+CalendarDblNum(sMonth+1)+oInstance.separator+CalendarDblNum(sDay);        ///return

sDateString
    //alert(sDateString);
    if(oInstance.oTaget.tagName=="INPUT")
    {
        oInstance.oTaget.value=sDateString;
    }
    //document.all[oInstance.sDIVID].style.display="none";        
    document.getElementById(oInstance.sDIVID).style.display="none";
}

function clearInput(oInstance){
    if(oInstance.oTaget.tagName=="INPUT")
    {
        oInstance.oTaget.value="";
    }
    CalendarCancel(oInstance);
}


function CalendarYearChange(oInstance)              /// Year Change
{
    var sDay,sMonth,sYear,newDate
    sDay=oInstance.currDate.getDate();
    sMonth=oInstance.currDate.getMonth();
    //sYear=document.all[oInstance.sYEARID].value
    sYear = document.getElementById(oInstance.sYEARID).value
    newDate=new Date(sYear,sMonth,sDay);
    oInstance.Refresh(newDate);
}
function CalendarMonthChange(oInstance)             /// Month Change
{
    var sDay,sMonth,sYear,newDate
    sDay=oInstance.currDate.getDate();
    //sMonth=document.all[oInstance.sMONTHID].value
    sMonth=document.getElementById(oInstance.sMONTHID).value
    sYear=oInstance.currDate.getYear();
    newDate=new Date(sYear,sMonth,sDay);
    oInstance.Refresh(new Date());      
}
function CalendarTodayClick(oInstance)              /// "Today" button Change
{   
    oInstance.Refresh(new Date());      
}

function getDateString(oInputSrc,oInstance)
{
    if(oInputSrc&&oInstance)
    {
       // CalendarDiv=document.all[oInstance.sDIVID];
        CalendarDiv = document.getElementById(oInstance.sDIVID);
        oInstance.oTaget=oInputSrc;
        if(document.all){
          //CalendarDiv.style.pixelLeft=CalendargetPos(oInputSrc,"Left")+90+oInputSrc.offsetWidth;
          //CalendarDiv.style.pixelTop=CalendargetPos(oInputSrc,"Top")-25+oInputSrc.offsetHeight;
          CalendarDiv.style.pixelLeft=CalendargetPos(oInputSrc,"Left");
          CalendarDiv.style.pixelTop=CalendargetPos(oInputSrc,"Top") + oInputSrc.offsetHeight;
        }else{
          //CalendarDiv.style.left=CalendargetPos(oInputSrc,"Left") - 134+oInputSrc.offsetWidth + "px";
          CalendarDiv.style.left=CalendargetPos(oInputSrc,"Left") + "px";
          CalendarDiv.style.top=CalendargetPos(oInputSrc,"Top") + oInputSrc.offsetHeight + "px";
        }
        CalendarDiv.style.display=(CalendarDiv.style.display=="none")?"":"none";
    }   
    glbObjPointer = oInputSrc;
}
function CalendarCellSetCss(sMode,oCell)            /// Set Cell Css
{
    // sMode
    // 0: OnMouserOut 1: OnMouseOver
    if(sMode)
    {
        oCell.style.border="1px solid #FEFEFE";//日选择背景外框颜色(白)
        oCell.style.backgroundColor="#C2C2C2";//日选择背景内框颜色(灰)
    }
    else
    {
        oCell.style.border="1px solid #FFFFFF";
        oCell.style.backgroundColor="#FFFFFF";
    }   
}
function CalendarGetMaxDay(nowYear,nowMonth)            /// Get MaxDay of current month
{
    var nextMonth,nextYear,currDate,nextDate,theMaxDay
    nextMonth=nowMonth+1;
    if(nextMonth>11)
    {
        nextYear=nowYear+1;
        nextMonth=0;
    }
    else   
    {
        nextYear=nowYear;   
    }
    currDate=new Date(nowYear,nowMonth,1);
    nextDate=new Date(nextYear,nextMonth,1);
    theMaxDay=(nextDate-currDate)/(24*60*60*1000);
    return theMaxDay;
}
function CalendargetPos(el,ePro)                /// Get Absolute Position
{
    var ePos=0;
    while(el!=null)
    {      
        ePos+=el["offset"+ePro];
        el=el.offsetParent;
    }
    return ePos;
}
function CalendarDblNum(num)
{
    if(num<10)
        return "0"+num;
    else
        return num;
}
function CalendarCancel(oInstance)          ///Cancel
{
    //CalendarDiv=document.all[oInstance.sDIVID];
    CalendarDiv = document.getElementById(oInstance.sDIVID);
    CalendarDiv.style.display="none";      
}

//var oCalendarEn=new PopupCalendar("oCalendarEn");   //\u521d\u59cb\u5316\u63a7\u4ef6\u65f6,\u8bf7\u7ed9

\u51fa\u5b9e\u4f8b\u540d\u79f0\u5982:oCalendarEn
//oCalendarEn.Init();


var oCalendarChs=new PopupCalendar("oCalendarChs"); //\u521d\u59cb\u5316\u63a7\u4ef6\u65f6,\u8bf7\u7ed9

\u51fa\u5b9e\u4f8b\u540d\u79f0:oCalendarChs
oCalendarChs.weekDaySting=new Array("\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d");
oCalendarChs.monthSting=new Array("\u4e00\u6708","\u4e8c\u6708","\u4e09\u6708","\u56db\u6708","\u4e94

\u6708","\u516d\u6708","\u4e03\u6708","\u516b\u6708","\u4e5d\u6708","\u5341\u6708","\u5341\u4e00\u6708","\u5341

\u4e8c\u6708");
oCalendarChs.oBtnTodayTitle="\u4eca\u5929";
oCalendarChs.oBtnCancelTitle="\u53d6\u6d88";
oCalendarChs.oBtnCleanTitle="\u6e05\u7a7a";
oCalendarChs.Init();
搜索更多相关主题的帖子: 个位数 Array InstanceName separator new 
2008-06-20 10:14
渚薰
Rank: 6Rank: 6
等 级:贵宾
威 望:22
帖 子:1132
专家分:0
注 册:2006-8-6
收藏
得分:0 
function fillZero(num, count) {
   var strNum =num.toString();
   for (var i = 0; i < count - strNum.length(); i++) {
      strNum = '0' + strNum;
   }
   return strNum;
}

个人ajax技术专题站: " target="_blank">http://www. 我不会闲你烦,只会闲你不够烦!
2008-06-20 12:37
kjf_x
Rank: 1
等 级:新手上路
帖 子:39
专家分:5
注 册:2008-7-3
收藏
得分:0 
String(100+num).slice(1)
2008-07-21 10:50
快速回复:我想在选今天时显示日期的月份和日期如果是个位数的话前面加个0.
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017821 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved