calendar.htm

来自「jsp网站」· HTM 代码 · 共 40 行

HTM
40
字号
<html>
<head>
<title>请选择日期:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</title>
<meta http-equiv=Content-Type content="text/html; charset=gb2312">
<script Language="JavaScript" src="calendar.js"></script>
<script Language="JavaScript">
function fload()
{
    fPopCalendar(document.all.txt1, document.all.txt1);
}

function fkeydown()
{
    if(event.keyCode==27){
        event.returnValue = null;
        window.returnValue = null;
        window.close();
    }
    else
    {
        window.returnValue = String.fromCharCode(event.keyCode);
        window.close();
    }
}
document.onkeydown=fkeydown;
</script>
<style type="text/css">
<!--
td {  font-size: 9pt}
.input {  border: 1px #094897 solid; background-color: #FBFDFF; font-size: 9pt; color: #033072}
-->
</style>
</head>

<body bgcolor="#FFFFFF" text="#000000" onload=fload()>
<input id=txt1 style="display: none">
</body>
<script language="javascript">
</script>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?