%26lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"%26gt; %26lt;html xmlns="http://www.w3.org/1999/xhtml"%26gt; %26lt;head%26gt; %26lt;title%26gt; JS 日历knowsky.com %26lt;/title%26gt; %26lt;meta name="author" content="网页教学网"%26gt; %26lt;meta name="keywords" content="js日历,calender"%26gt; %26lt;meta name="description" content="js日历"%26gt; %26lt;script type="text/javascript"%26gt; function HS_DateAdd(interval,number,date){ number = parseInt(number); if (typeof(date)=="string"){var date = new Date(date.split("-")[0],date.split("-")[1],date.split("-")[2])} if (typeof(date)=="object"){var date = date} switch(interval){ case "y":return new Date(date.getFullYear()+number,date.getMonth(),date.getDate()); break; case "m":return new Date(date.getFullYear(),date.getMonth()+number,checkDate(date.getFullYear(),date.getMonth()+number,date.getDate())); break; case "d":return new Date(date.getFullYear(),date.getMonth(),date.getDate()+number); break; case "w":return new Date(date.getFullYear(),date.getMonth(),7*number+date.getDate()); break; } } function checkDate(year,month,date){ var enddate = ["31","28","31","30","31","30","31","31","30","31","30","31"]; var returnDate = ""; if (year%4==0){enddate[1]="29"} if (date%26gt;enddate[month]){returnDate = enddate[month]}else{returnDate = date} return returnDate; } function WeekDay(date){ var theDate; if (typeof(date)=="string"){theDate = new Date(date.split("-")[0],date.split("-")[1],date.split("-")[2]);} if (typeof(date)=="object"){theDate = date} return theDate.getDay(); } function HS_calender(){ var lis = ""; var style = ""; /*可以把下面的css剪切出去独立一个css文件knowsky.com*/ style +="%26lt;style type='text/css'%26gt;"; style +=".calender { width:170px; height:auto; font-size:12px; margin-right:14px; background:url(calenderbg.gif) no-repeat right center #fff; border:1px solid #397EAE; padding:1px}"; style +=".calender ul {list-style-type:none; margin:0; padding:0;}"; style +=".calender .day { background-color:#EDF5FF; height:20px;}"; style +=".calender .day li,.calender .date li{ float:left; width:14%; height:20px; line-height:20px; text-align:center}"; style +=".calender li a { text-decoration:none; font-family:Tahoma; font-size:11px; color:#333}"; style +=".calender li a:hover { color:#f30; text-decoration:underline}"; style +=".calender li a.hasArticle {font-weight:bold; color:#f60 !important}"; style +=".lastMonthDate, .nextMonthDate {color:#bbb;font-size:11px}"; style +=".selectThisYear a, .selectThisMonth a{text-decoration:none; margin:0 2px; color:#000; font-weight:bold}"; style +=".calender .LastMonth, .calender .NextMonth{ text-decoration:none; color:#000; font-size:18px; font-weight:bold; line-height:16px;}"; style +=".calender .LastMonth { float:left;}"; style +=".calender .NextMonth { float:right;}"; style +=".calenderBody {clear:both}"; style +=".calenderTitle {text-align:center;height:20px; line-height:20px; clear:both}"; style +=".today { background-color:#ffffaa;border:1px solid #f60; padding:2px}"; style +=".today a { color:#f30; }"; style +=".calenderBottom {clear:both; border-top:1px solid #ddd; padding: 3px 0; text-align:left}"; style +=".calenderBottom a {text-decoration:none; margin:2px !important; font-weight:bold; color:#000}"; style +=".calenderBottom a.closeCalender{float:right}"; style +=".closeCalenderBox {float:right; border:1px solid #000; background:#fff; font-size:9px; width:11px; height:11px; line-height:11px; text-align:center;overflow:hidden; font-weight:normal !important}"; style +="%26lt;/style%26gt;"; var now; if (typeof(arguments[0])=="string"){ selectDate = arguments[0].split("-"); var year = selectDate[0]; var month = parseInt(selectDate[1])-1+""; var date = selectDate[2]; now = new Date(year,month,date); }else if (typeof(arguments[0])=="object"){ now = arguments[0]; } var lastMonthEndDate = HS_DateAdd("d","-1",now.getFullYear()+"-"+now.getMonth()+"-01").getDate(); var lastMonthDate = WeekDay(now.getFullYear()+"-"+now.getMonth()+"-01"); var thisMonthLastDate = HS_DateAdd("d","-1",now.getFullYear()+"-"+(parseInt(now.getMonth())+1).toString()+"-01"); var thisMonthEndDate = thisMonthLastDate.getDate(); var thisMonthEndDay = thisMonthLastDate.getDay(); var todayObj = new Date(); today = todayObj.getFullYear()+"-"+todayObj.getMonth()+"-"+todayObj.getDate(); for (i=0; i%26lt;lastMonthDate; i++){ // Last Month's Date lis = "%26lt;li class='lastMonthDate'%26gt;"+lastMonthEndDate+"%26lt;/li%26gt;" + lis; lastMonthEndDate--; } for (i=1; i%26lt;=thisMonthEndDate; i++){ // Current Month's Date if(today == now.getFullYear()+"-"+now.getMonth()+"-"+i){ var todayString = now.getFullYear()+"-"+(parseInt(now.getMonth())+1).toString()+"-"+i; lis += "%26lt;li%26gt;%26lt;a href=javascript:void(0) class='today' onclick='_selectThisDay(this)' title='"+now.getFullYear()+"-"+(parseInt(now.getMonth())+1)+"-"+i+"'%26gt;"+i+"%26lt;/a%26gt;%26lt;/li%26gt;"; }else{ lis += "%26lt;li%26gt;%26lt;a href=javascript:void(0) onclick='_selectThisDay(this)' title='"+now.getFullYear()+"-"+(parseInt(now.getMonth())+1)+"-"+i+"'%26gt;"+i+"%26lt;/a%26gt;%26lt;/li%26gt;"; } } var j=1; for (i=thisMonthEndDay; i%26lt;6; i++){ // Next Month's Date lis += "%26lt;li class='nextMonthDate'%26gt;"+j+"%26lt;/li%26gt;"; j++; } lis += style; var CalenderTitle = "%26lt;a href='javascript:void(0)' class='NextMonth' onclick=HS_calender(HS_DateAdd('m',1,'"+now.getFullYear()+"-"+now.getMonth()+"-"+now.getDate()+"'),this) title='Next Month'%26gt;%26amp;raquo;%26lt;/a%26gt;"; CalenderTitle += "%26lt;a href='javascript:void(0)' class='LastMonth' onclick=HS_calender(HS_DateAdd('m',-1,'"+now.getFullYear()+"-"+now.getMonth()+"-"+now.getDate()+"'),this) title='Previous Month'%26gt;%26amp;laquo;%26lt;/a%26gt;"; CalenderTitle += "%26lt;span class='selectThisYear'%26gt;%26lt;a href='javascript:void(0)' onclick='CalenderselectYear(this)' title='Click here to select other year' %26gt;"+now.getFullYear()+"%26lt;/a%26gt;%26lt;/span%26gt;年%26lt;span class='selectThisMonth'%26gt;%26lt;a href='javascript:void(0)' onclick='CalenderselectMonth(this)' title='Click here to select other month'%26gt;"+(parseInt(now.getMonth())+1).toString()+"%26lt;/a%26gt;%26lt;/span%26gt;月"; if (arguments.length%26gt;1){ arguments[1].parentNode.parentNode.getElementsByTagName("ul")[1].innerHTML = lis; arguments[1].parentNode.innerHTML = CalenderTitle; }else{ var CalenderBox = style+"%26lt;div class='calender'%26gt;%26lt;div class='calenderTitle'%26gt;"+CalenderTitle+"%26lt;/div%26gt;%26lt;div class='calenderBody'%26gt;%26lt;ul class='day'%26gt;%26lt;li%26gt;日%26lt;/li%26gt;%26lt;li%26gt;一%26lt;/li%26gt;%26lt;li%26gt;二%26lt;/li%26gt;%26lt;li%26gt;三%26lt;/li%26gt;%26lt;li%26gt;四%26lt;/li%26gt;%26lt;li%26gt;五%26lt;/li%26gt;%26lt;li%26gt;六%26lt;/li%26gt;%26lt;/ul%26gt;%26lt;ul class='date' id='thisMonthDate'%26gt;"+lis+"%26lt;/ul%26gt;%26lt;/div%26gt;%26lt;div class='calenderBottom'%26gt;%26lt;a href='javascript:void(0)' class='closeCalender' onclick='closeCalender(this)'%26gt;%26amp;times;%26lt;/a%26gt;%26lt;span%26gt;%26lt;span%26gt;%26lt;a href=javascript:void(0) onclick='_selectThisDay(this)' title='"+todayString+"'%26gt;Today%26lt;/a%26gt;%26lt;/span%26gt;%26lt;/span%26gt;%26lt;/div%26gt;%26lt;/div%26gt;"; return CalenderBox; } } function _selectThisDay(d){ var boxObj = d.parentNode.parentNode.parentNode.parentNode.parentNode; boxObj.targetObj.value = d.title; boxObj.parentNode.removeChild(boxObj); } function closeCalender(d){ var boxObj = d.parentNode.parentNode.parentNode; boxObj.parentNode.removeChild(boxObj); } function CalenderselectYear(obj){ var opt = ""; var thisYear = obj.innerHTML; for (i=1970; i%26lt;=2020; i++){ if (i==thisYear){ opt += "%26lt;option value="+i+" selected%26gt;"+i+"%26lt;/option%26gt;"; }else{ opt += "%26lt;option value="+i+"%26gt;"+i+"%26lt;/option%26gt;"; } } opt = "%26lt;select onblur='selectThisYear(this)' onchange='selectThisYear(this)' style='font-size:11px'%26gt;"+opt+"%26lt;/select%26gt;"; obj.parentNode.innerHTML = opt; } function selectThisYear(obj){ HS_calender(obj.value+"-"+obj.parentNode.parentNode.getElementsByTagName("span")[1].getElementsByTagName("a")[0].innerHTML+"-1",obj.parentNode); } function CalenderselectMonth(obj){ var opt = ""; var thisMonth = obj.innerHTML; for (i=1; i%26lt;=12; i++){ if (i==thisMonth){ opt += "%26lt;option value="+i+" selected%26gt;"+i+"%26lt;/option%26gt;"; }else{ opt += "%26lt;option value="+i+"%26gt;"+i+"%26lt;/option%26gt;"; } } opt = "%26lt;select onblur='selectThisMonth(this)' onchange='selectThisMonth(this)' style='font-size:11px'%26gt;"+opt+"%26lt;/select%26gt;"; obj.parentNode.innerHTML = opt; } function selectThisMonth(obj){ HS_calender(obj.parentNode.parentNode.getElementsByTagName("span")[0].getElementsByTagName("a")[0].innerHTML+"-"+obj.value+"-1",obj.parentNode); } function HS_setDate(inputObj){ var calenderObj = document.createElement("span"); calenderObj.innerHTML = HS_calender(new Date()); calenderObj.style.position = "absolute"; calenderObj.targetObj = inputObj; inputObj.parentNode.insertBefore(calenderObj,inputObj.nextSibling); } %26lt;/script%26gt; %26lt;style%26gt; body {font-size:12px} td {text-align:center} h1 {font-size:26px;} h4 {font-size:16px;} em {color:#999; margin:0 10px; font-size:11px; display:block} %26lt;/style%26gt; %26lt;/head%26gt; %26lt;body%26gt; %26lt;h1%26gt;Date Picker%26lt;/h1%26gt; %26lt;h4 style="border-bottom:1px solid #ccc"%26gt;ver:1.0%26lt;/h4%26gt; %26lt;table border=1 width=400 height=150%26gt; %26lt;tr%26gt; %26lt;td%26gt;文本文本文本%26lt;/td%26gt; %26lt;td%26gt;点击输入框%26lt;/td%26gt; %26lt;td%26gt;文本文本文本%26lt;/td%26gt; %26lt;/tr%26gt; %26lt;tr%26gt; %26lt;td%26gt;点击输入框%26lt;/td%26gt; %26lt;td%26gt;%26lt;input type="text" style="width:70px" onfocus="HS_setDate(this)"%26gt;文本%26lt;/td%26gt; %26lt;td%26gt;文本文本文本%26lt;/td%26gt; %26lt;/tr%26gt; %26lt;tr%26gt; %26lt;td%26gt;文本文本文本%26lt;/td%26gt; %26lt;td%26gt;点击输入框%26lt;/td%26gt; %26lt;td%26gt;文本%26lt;input type="text" style="width:70px" onfocus="HS_setDate(this)"%26gt;文本%26lt;/td%26gt; %26lt;/tr%26gt; %26lt;/table%26gt; %26lt;ul%26gt; %26lt;li%26gt;不需要其他框架类库%26lt;/li%26gt; %26lt;li%26gt;支持ie6、firefox、opera%26lt;/li%26gt; %26lt;li%26gt;点击年份与月份可以下拉选择%26lt;/li%26gt; %26lt;/ul%26gt; %26lt;/body%26gt; %26lt;/html%26gt;