calendardlg.htm

来自「javascript编码总结」· HTM 代码 · 共 38 行

HTM
38
字号
<html>
<head>
<title>
:::::::日期选择::::::                             
</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script src="calendar.js"></script>

<script>
function fload()
{
	fPopCalendar(document.all.txt1, document.all.txt1);
}

function fkeydown()
{
	if(event.keyCode==27){
		event.returnValue = null;
		window.returnValue = null;
		window.close();
	}
}

document.onkeydown=fkeydown;

</script>

</head>
<body onload="fload()" bgcolor='#C0C0C0'>

<!--
<input type=button id="txt1" style="display:none">
//-->
<input type=button id="txt1" style="display: none">


</body>
</html>

⌨️ 快捷键说明

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