中文字幕免费精品_亚洲视频自拍_亚洲综合国产激情另类一区_色综合咪咪久久

中英文版的時間日期
來源:易賢網 閱讀:1694 次 日期:2015-09-02 15:34:43
溫馨提示:易賢網小編為您整理了“中英文版的時間日期”,方便廣大網友查閱!

代碼如下:

<HTML>

<HEAD>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<TITLE>有用的中英文日歷網頁特效代碼</TITLE>

<script>

function PopupCalendar(InstanceName)

{

///Global Tag

this.instanceName=InstanceName;

///Properties

this.separator="-"

this.oBtnTodayTitle="Today"

this.oBtnCancelTitle="Cancel"

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=2010;

///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();

htmlAll="<div id='"+this.sDIVID+"' style='display:none;position:absolute;width:"+this.Width+";border:"+this.divBorderCss+";padding:2px;background-color:#FFFFFF'>";

htmlAll+="<div align='center'>";

/// Month

htmloMonth="<select id='"+this.sMONTHID+"' onchange=CalendarMonthChange("+this.instanceName+") style='width:50%'>";

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:50%'>";

for(i=this.startYear;i<=this.endYear;i++)

{

htmloYear+="<option value='"+i+"'>"+i+"</option>";

}

htmloYear+="</select></div>";

/// Day

htmloDayTable="<table id='"+this.sTABLEID+"' width='100%' border=0 cellpadding=0 cellspacing=1 bgcolor='"+this.tableBorderColor+"'>";

htmloDayTable+="<tbody bgcolor='#ffffff'style='font-size:13px'>";

for(i=0;i<=6;i++)

{

if(i==0)

htmloDayTable+="<tr bgcolor='#98B8CD'>";

else

htmloDayTable+="<tr>";

for(j=0;j<7;j++)

{

if(i==0)

{

htmloDayTable+="<td height='20' align='center' valign='middle' style='cursor:hand'>";

htmloDayTable+=this.weekDaySting[j]+"</td>"

}

else

{

htmloDayTable+="<td height='20' align='center' valign='middle' style='cursor:hand'";

htmloDayTable+=" onmouseover=CalendarCellsMsOver("+this.instanceName+")";

htmloDayTable+=" onmouseout=CalendarCellsMsOut("+this.instanceName+")";

htmloDayTable+=" onclick=CalendarCellsClick(this,"+this.instanceName+")>";

htmloDayTable+=" </td>"

}

}

htmloDayTable+="</tr>";

}

htmloDayTable+="</tbody></table>";

/// Today Button

htmloButton="<div align='center' style='padding:3px'>"

htmloButton+="<button style='width:40%;border:1px solid #BCD0DE;background-color:#eeeeee;cursor:hand'"

htmloButton+=" onclick=CalendarTodayClick("+this.instanceName+")>"+this.oBtnTodayTitle+"</button> "

htmloButton+="<button style='width:40%;border:1px solid #BCD0DE;background-color:#eeeeee;cursor:hand'"

htmloButton+=" onclick=CalendarCancel("+this.instanceName+")>"+this.oBtnCancelTitle+"</button> "

htmloButton+="</div>"

/// All

htmlAll=htmlAll+htmloMonth+htmloYear+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();

sYear=this.currDate.getYear();

sWeekDay=(new Date(sYear,sMonth,1)).getDay();

sToday=this.currDate.getDate();

oTable=document.all[this.sTABLEID];

currRow=oTable.rows[1];

MaxDay=CalendarGetMaxDay(sYear,sMonth);

oSelectMonth=document.all[this.sMONTHID]

oSelectMonth.selectedIndex=sMonth;

oSelectYear=document.all[this.sYEARID]

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;

}

}

}

function CalendarRestore()/// Clear Data

{

var oTable

oTable=document.all[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=" ";

}

}

}

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)

{

var sDay,sMonth,sYear,newDate

sYear=oInstance.currDate.getFullYear();

sMonth=oInstance.currDate.getMonth();

sDay=oInstance.currDate.getDate();

if(oCell.innerText!=" ")

{

sDay=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

if(oInstance.oTaget.tagName=="INPUT")

{

oInstance.oTaget.value=sDateString;

}

document.all[oInstance.sDIVID].style.display="none";

}

function CalendarYearChange(oInstance)/// Year Change

{

var sDay,sMonth,sYear,newDate

sDay=oInstance.currDate.getDate();

sMonth=oInstance.currDate.getMonth();

sYear=document.all[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

sYear=oInstance.currDate.getYear();

newDate=new Date(sYear,sMonth,sDay);

oInstance.Refresh(newDate);

}

function CalendarTodayClick(oInstance)/// "Today" button Change

{

oInstance.Refresh(new Date());

}

function getDateString(oInputSrc,oInstance)

{

if(oInputSrc&&oInstance)

{

CalendarDiv=document.all[oInstance.sDIVID];

oInstance.oTaget=oInputSrc;

CalendarDiv.style.pixelLeft=CalendargetPos(oInputSrc,"Left");

CalendarDiv.style.pixelTop=CalendargetPos(oInputSrc,"Top")+oInputSrc.offsetHeight;

CalendarDiv.style.display=(CalendarDiv.style.display=="none")?"":"none";

}

}

function CalendarCellSetCss(sMode,oCell)/// Set Cell Css

{

// sMode

// 0: OnMouserOut 1: OnMouseOver

if(sMode)

{

oCell.style.border="1px solid #5589AA";

oCell.style.backgroundColor="#BCD0DE";

}

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.style.display="none";

}

</script>

</head>

<BODY >

<script >

var oCalendarEn=new PopupCalendar("oCalendarEn");//初始化控件時,請給出實例名稱如:oCalendarEn

oCalendarEn.Init();

var oCalendarChs=new PopupCalendar("oCalendarChs");//初始化控件時,請給出實例名稱:oCalendarChs

oCalendarChs.weekDaySting=new Array("日","一","二","三","四","五","六");

oCalendarChs.monthSting=new Array("一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月");

oCalendarChs.oBtnTodayTitle="今天";

oCalendarChs.oBtnCancelTitle="取消";

oCalendarChs.Init();

</script>

<br><br><br><br>

<input readonly type="text" name="dd" id="aa" onClick="getDateString(this,oCalendarEn)" value="English Version">

<br><br><br><br>

<input readonly type="text" name="dd" id="aa" onClick="getDateString(this,oCalendarChs)" value="中文界面版">

<div style="width:728px;margin:10px auto; overflow:hidden;">

<script src='http://www.update8.com/plus/ad_js.php?aid=10023' language='javascript'></script>

</div>

</BODY>

</HTML>

更多信息請查看IT技術專欄

更多信息請查看網頁制作
易賢網手機網站地址:中英文版的時間日期
由于各方面情況的不斷調整與變化,易賢網提供的所有考試信息和咨詢回復僅供參考,敬請考生以權威部門公布的正式信息和咨詢為準!

2026上岸·考公考編培訓報班

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯系我們 | 人才招聘 | 網站聲明 | 網站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
云南網警備案專用圖標
聯系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權所有:易賢網
云南網警報警專用圖標
中文字幕免费精品_亚洲视频自拍_亚洲综合国产激情另类一区_色综合咪咪久久
91久久精品美女| 红桃视频成人| 亚洲曰本av电影| 国产私拍一区| 欧美精品在线免费播放| 欧美在线一级视频| 99综合在线| 亚洲国产精品国自产拍av秋霞| 国产精品免费一区二区三区观看| 欧美电影在线免费观看网站| 欧美在线观看视频在线| 中文日韩在线视频| 日韩一本二本av| 亚洲第一网站免费视频| 国产午夜精品一区二区三区欧美 | 欧美体内谢she精2性欧美| 久久久久久夜精品精品免费| 亚洲一级片在线观看| 亚洲精品男同| 在线成人免费观看| 红桃视频国产精品| 国产美女在线精品免费观看| 欧美四级在线观看| 欧美日产在线观看| 欧美激情亚洲一区| 免费在线观看一区二区| 久久久久久噜噜噜久久久精品| 香蕉成人伊视频在线观看| a4yy欧美一区二区三区| 亚洲精品免费观看| 亚洲国产中文字幕在线观看| 曰韩精品一区二区| 国产一区二区三区最好精华液| 国产精品日韩电影| 国产精品mv在线观看| 欧美日韩精品欧美日韩精品一| 免费在线视频一区| 欧美福利电影网| 欧美高清一区| 欧美裸体一区二区三区| 欧美人成网站| 欧美三级资源在线| 国产精品激情电影| 国产精品免费一区二区三区在线观看| 欧美午夜国产| 国产麻豆91精品| 国产日韩欧美综合精品| 国产欧美日韩亚洲精品| 国产一区二区三区四区hd| 国产一区999| 很黄很黄激情成人| 尤物99国产成人精品视频| 亚洲国产精品一区二区第四页av| 在线看欧美日韩| 91久久黄色| 亚洲美女毛片| 99riav1国产精品视频| a4yy欧美一区二区三区| 亚洲一区二区在线免费观看| 亚洲专区一区二区三区| 翔田千里一区二区| 久久久久久尹人网香蕉| 麻豆精品一区二区av白丝在线| 欧美一区国产一区| 日韩亚洲在线| 亚洲婷婷国产精品电影人久久| 亚洲欧美三级在线| 久久久国产精品亚洲一区| 免费亚洲一区| 欧美日本韩国一区| 国产精品亚洲片夜色在线| 国产精品中文字幕在线观看| 国产在线视频欧美| 亚洲丶国产丶欧美一区二区三区 | 国产午夜精品一区二区三区欧美 | 欧美亚洲一区| 久久精品亚洲热| 在线观看一区视频| 亚洲国产成人久久综合一区| 亚洲精品网址在线观看| 一区二区三区欧美| 久久国产精品久久w女人spa| 免费毛片一区二区三区久久久| 欧美日韩伦理在线| 国产中文一区| 亚洲欧洲日韩在线| 亚洲欧美激情视频在线观看一区二区三区| 久久国产综合精品| 欧美精品www| 国产日韩欧美精品在线| 亚洲国产福利在线| 亚洲免费视频在线观看| 免费观看欧美在线视频的网站| 欧美三级不卡| 伊人成人在线| 亚洲欧洲av一区二区| 久久久福利视频| 欧美日韩一区二区国产| 国精品一区二区三区| 一本色道88久久加勒比精品| 久久久久久久97| 久久野战av| 欧美午夜精品久久久久久人妖| 国内精品久久久久久久97牛牛| 亚洲麻豆视频| 久久青青草原一区二区| 国产精品久久网站| 亚洲精品免费看| 亚洲欧美国产77777| 国产精品视频免费观看www| 狠狠综合久久av一区二区小说| 亚洲直播在线一区| 欧美深夜福利| 午夜精品一区二区三区在线播放| 欧美激情免费在线| 亚洲国内高清视频| 狠狠久久亚洲欧美| 99国内精品久久| 欧美极品一区| 一本大道久久a久久精品综合| 欧美jizzhd精品欧美巨大免费| 尤物yw午夜国产精品视频| 免费成人av在线看| 亚洲高清资源| 欧美另类综合| 嫩模写真一区二区三区三州| 黑人操亚洲美女惩罚| 国产精品久久久久久久久久妞妞| 亚洲精品一区二区在线| 另类综合日韩欧美亚洲| 国产欧美日韩91| 亚洲一区二区精品在线| 国产乱码精品一区二区三区五月婷 | 狠狠色丁香婷婷综合久久片| 亚洲午夜视频在线| 国产伦精品一区二区三区照片91| 香蕉久久久久久久av网站| 国产亚洲精品bv在线观看| 午夜一级久久| 欧美日韩综合网| 夜夜嗨av色一区二区不卡| 欧美国产在线电影| 亚洲精品美女在线观看| 乱人伦精品视频在线观看| 一区二区视频免费在线观看| 久久久久国产精品麻豆ai换脸| 中国成人亚色综合网站| 欧美人与性禽动交情品 | 极品尤物av久久免费看| 久久av一区| 国产一区视频网站| 久久精品视频网| 狠狠色狠狠色综合日日小说| 久久国产综合精品| 精品电影一区| 欧美mv日韩mv国产网站| 亚洲三级免费| 一本久久综合| 玖玖精品视频| 国产精品一区二区三区久久| 亚洲欧美中文日韩在线| 国产精品一区二区久久| 欧美一区亚洲| 狠狠色伊人亚洲综合成人| 亚洲欧美激情四射在线日| 欧美亚洲视频在线观看| 美女主播精品视频一二三四| 亚洲国产裸拍裸体视频在线观看乱了中文 | 国产视频久久| 久久久久久久国产| 在线成人av.com| 欧美精品一区二区久久婷婷| 中文av字幕一区| 国产欧美一区二区三区视频 | 国产亚洲欧美一区二区| 久久综合给合久久狠狠色 | 亚洲二区在线视频| 欧美日韩精品在线观看| 亚洲欧美日韩成人| 亚洲二区在线| 91久久国产精品91久久性色| 欧美日韩激情小视频| 欧美一区二区精美| 亚洲国产经典视频| 国产精品日韩欧美综合| 麻豆精品精品国产自在97香蕉| 亚洲精品一区在线观看| 国产精品专区h在线观看| 鲁大师影院一区二区三区| 中文国产成人精品| 国外精品视频| 欧美日韩在线看| 久久精品视频免费观看| 日韩亚洲不卡在线| 国产一区二区三区黄视频| 欧美激情女人20p| 午夜精品免费| 亚洲伦理在线| 欧美黄色网络| 久久经典综合|