分享
 
 
 

Web上日历选择的HTC封装组件

王朝java/jsp·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

Date.htm

<input type="text" style="behavior:url('Date.htc');" value="2004-01-01">

Date.htc

<public:attach event=oncontentready onevent=initDate()>

<script>

//该HTC组件目前只支持INPUT并TYPE=TEXT下使用

//日期面板容器

var vDiv=null;

//框架

var vFieldset=null;

//日期面板

var vTable=null;

//日期格式字符串

var strDate="";

//静态数组

var strWeekArray=new Array("星期日","星期一","星期二","星期三","星期四","星期五","星期六");

function initDate()

{

//初始化日期

if(element.value)

{strDate=element.value;}

else

{strDate=getToday();}

//创建容器

vDiv=document.createElement("vDiv");

vDiv.style.position="absolute";

vDiv.style.left=0;

vDiv.style.top=0;

vDiv.style.width="275px";

//绘制框架

vFieldset=document.createElement("fieldset");

var vLegend=document.createElement("legend");

vLegend.style.font="normal 9pt 宋体";

vLegend.innerHTML="日期";

vFieldset.appendChild(vLegend);

//绘制年月栏

initYearMonthBar();

//绘制面板

initPanel();

//绘制控制区

initConsole();

vDiv.appendChild(vFieldset);

window.document.body.insertAdjacentElement("afterbegin",vDiv);

vDiv.style.display="none";

//事件绑定

element.attachEvent("onmousedown",onMouseDown);

element.readOnly="true";

}

//绘制面板

function initPanel()

{

vTable=document.createElement("table");

vTable.style.backgroundColor="#EEEEEE";

vTable.border="0";

vTable.cellSpacing="1";

vTable.cellPadding="0";

//vTable.width="80%";

vTable.style.borderLeft="1px solid #000000";

vTable.style.borderBottom="1px solid #000000";

initWeekCol();

initDayCell();

vFieldset.appendChild(vTable);

}

//画年月

function initYearMonthBar()

{

vInput=document.createElement("input");

vInput.type="button";

vInput.style.font="normal 9pt Marlett";

vInput.value="3";

vFieldset.appendChild(vInput);

vSelect=document.createElement("select");

vSelect.style.font="normal 8pt 宋体";

for(mIndex=eval("getDateYear()-20");mIndex<=eval("getDateYear()+20");mIndex++)

{

vOption=document.createElement("option");

vOption.value=mIndex;

vOption.text=mIndex+"年";

vSelect.add(vOption);

if(getDateYear()==mIndex)

{

vOption.selected="selected";

}

}

vSelect.attachEvent("onchange",onYearChange);

vFieldset.appendChild(vSelect);

vInput=document.createElement("input");

vInput.type="button";

vInput.style.font="normal 9pt Marlett";

vInput.value="4";

vFieldset.appendChild(vInput);

vInput=document.createElement("input");

vInput.type="button";

vInput.style.font="normal 9pt Marlett";

vInput.value="3";

vFieldset.appendChild(vInput);

vSelect=document.createElement("select");

vSelect.style.font="normal 8pt 宋体";

var now=new Date();

for(nIndex=1;nIndex<=12;nIndex++)

{

vOption=document.createElement("option");

vOption.value=strFormat(nIndex,2);

vOption.text=strFormat(nIndex,2)+"月";

vSelect.add(vOption);

if(getDateMonth()==nIndex)

{

vOption.selected="selected";

}

}

vSelect.attachEvent("onchange",onMonthChange);

vFieldset.appendChild(vSelect);

vInput=document.createElement("input");

vInput.type="button";

vInput.style.font="normal 9pt Marlett";

vInput.value="4";

vFieldset.appendChild(vInput);

}

//绘制控制区

function initConsole()

{

vInput=document.createElement("input");

vInput.type="button";

vInput.style.font="normal 9pt 宋体";

vInput.value="今天";

vInput.attachEvent("onmousedown",onTodayMouseDown);

vFieldset.appendChild(vInput);

vInput=document.createElement("input");

vInput.type="button";

vInput.style.font="normal 7pt Webdings";

vInput.value="a";

vInput.attachEvent("onmousedown",onOKMouseDown);

vFieldset.appendChild(vInput);

vInput=document.createElement("input");

vInput.type="button";

vInput.style.font="normal 7pt Webdings";

vInput.value="r";

vInput.attachEvent("onmousedown",onCancelMouseDown);

vFieldset.appendChild(vInput);

}

function onTodayMouseDown()

{

strDate=getToday();

element.value=strDate;

hideDate();

}

function onOKMouseDown()

{

element.value=strDate;

hideDate();

}

function onCancelMouseDown()

{

hideDate();

}

//画星期列

function initWeekCol()

{

var vTr=vTable.insertRow(0);

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

{

var vTd=vTr.insertCell(nIndex);

vTd.innerHTML=strWeekArray[nIndex];

vTd.style.font="normal 9pt 宋体";

vTd.style.borderTop="1px solid #000000";

vTd.style.borderRight="1px solid #000000";

vTd.style.backgroundColor="#DDDDDD";

}

}

//画天单元格

function initDayCell()

{

var iCurDay=0;

for(mIndex=1;mIndex<7;mIndex++)

{

var vTr=vTable.insertRow(mIndex);

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

{

var vTd=vTr.insertCell(nIndex);

if(mIndex==1&&nIndex==1*getYearMonthWeek())

{

iCurDay=1;

vTd.innerHTML=iCurDay;

}

else if(iCurDay!=0&&iCurDay<=1*getYearMonthDays())

{

vTd.innerHTML=iCurDay;

}

else

{

vTd.innerHTML="&nbsp;"

}

if(iCurDay==getDateDay())

{

vTd.style.color="#FF0000";

}

if(iCurDay!=0)

{

iCurDay++;

}

vTd.style.font="normal 9pt 宋体";

vTd.style.borderTop="1px solid #000000";

vTd.style.borderRight="1px solid #000000";

vTd.attachEvent("onmousedown",onCellMouseDown);

}

}

}

//选择框年鼠标按下

function onYearChange()

{

var vObject=window.event.srcElement;

var strYearMonth=strDate.split("-");

strDate=vObject.options[vObject.selectedIndex].value+"-"+strYearMonth[1]+"-"+strYearMonth[2];

for(iRowCount=6;iRowCount>=1;iRowCount--)

{

vTable.deleteRow(iRowCount);

}

initDayCell();

}

//选择框月鼠标按下

function onMonthChange()

{

var vObject=window.event.srcElement;

var strYearMonth=strDate.split("-");

strDate=strYearMonth[0]+"-"+vObject.options[vObject.selectedIndex].value+"-"+strYearMonth[2];

for(iRowCount=6;iRowCount>=1;iRowCount--)

{

vTable.deleteRow(iRowCount);

}

initDayCell();

}

//单元格天鼠标按下

function onCellMouseDown()

{

for(mIndex=1;mIndex<7;mIndex++)

{

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

{

vTable.rows(mIndex).cells(nIndex).style.backgroundColor="transparent";

}

}

var vObject=window.event.srcElement;

var strYearMonth=strDate.split("-");

strDate=strYearMonth[0]+"-"+strYearMonth[1]+"-"+strFormat(vObject.innerHTML,2);

vObject.style.backgroundColor="#FFFFFF";

}

//元素中鼠标按下[显示面板]

function onMouseDown()

{

if(element.value)

{strDate=element.value;}

else

{strDate=getToday();}

for(iRowCount=6;iRowCount>=1;iRowCount--)

{

vTable.deleteRow(iRowCount);

}

initDayCell();

showDate();

}

//文档中鼠标按下[隐藏面板]

function onDocumentMouseDown()

{

if(element.contains(event.srcElement))

{

return;

}

if(vDiv.contains(event.srcElement))

{

return;

}

hideDate();

strDate="";

}

//库函数

//显示面板

function showDate()

{

vDiv.style.display="";

vDiv.style.left=getElementDefineLeft(element);

vDiv.style.top=getElementDefineTop(element)+element.offsetHeight;

element.document.attachEvent('onmousedown',onDocumentMouseDown);

}

//隐藏面板

function hideDate()

{

vDiv.style.display="none";

vDiv.style.left=0;

vDiv.style.top=0;

element.document.detachEvent("onmousedown",onDocumentMouseDown);

}

//取元素绝对位置Left

function getElementDefineLeft(vObject)

{

var iElementLeft=vObject.offsetLeft;

while(vObject=vObject.offsetParent)

{

iElementLeft+=vObject.offsetLeft;

}

return iElementLeft;

}

//取元素绝对位置Top

function getElementDefineTop(vObject)

{

var iElementTop=vObject.offsetTop;

while(vObject=vObject.offsetParent)

{

iElementTop+=vObject.offsetTop;

}

return iElementTop;

}

//格式化串

function strFormat(str,iLen)

{

if(str.length<iLen)

{

for(iIndex=0;iIndex<iLen-str.length;iIndex++)

{

str="0"+str;

}

return str;

}

else

{return str;}

}

//获取今天日期

function getToday()

{

var vNow=new Date();

return strFormat(vNow.getYear(),4)+"-"+strFormat(vNow.getMonth()+1,2)+"-"+strFormat(vNow.getDate(),2);

}

//计算某年某月某日返回年

function getDateYear()

{

var strYearMonth=strDate.split("-");

return eval("1*strYearMonth[0]");

}

//计算某年某月某日返回月

function getDateMonth()

{

var strYearMonth=strDate.split("-");

return eval("1*strYearMonth[1]");

}

//计算某年某月某日返回日

function getDateDay()

{

var strYearMonth=strDate.split("-");

return eval("1*strYearMonth[2]");

}

//计算某年某月第一天是星期几

function getYearMonthWeek()

{

var strYearMonth=strDate.split("-");

var vDate=new Date(strYearMonth[0],parseInt(strYearMonth[1])-1,1);

return vDate.getDay();

}

//计算某年某月天数

function getYearMonthDays()

{

var strYearMonth=strDate.split("-");

var vDate=new Date(strYearMonth[0],strYearMonth[1],"0");

return vDate.getDate();

}

//

//闰年的条件是:能被4整除且不能被100整除,或能被400整除的年份是闰年.

//

</script>

</public:attach>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有