日期:2014-05-16  浏览次数:20347 次

日期时间控件 js脚本 示例1

?

?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>
		<title>日期时间组件示例1</title>

		<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
		<meta http-equiv="description" content="this is my page">
		<meta http-equiv="content-type" content="text/html; charset=UTF-8">

		<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

		<!-- 导入日期时间脚本 -->
		<script type="text/javascript" src="./js/selectDate.js"></script>

	</head>

	<body>
		<center>
			<h1>
				<font color="red">日期时间组件示例1</font>
			</h1>
			<p>
				<img alt="日期时间组件示例1" border="0" src="./img/1.jpg" />
			<p>
				日期选择 从:
				<input type="text" name="date11" id="date11" title="请点击选择日期"
					onClick="setDate('date11')" ); readonly />
				到:
				<input type="text" name="date12" id="date12" title="请点击选择日期"
					onClick="selectDate(this)" ); readonly />
			<p>
		</center>
	</body>
</html>

?