You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
792 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>jQuery Datepicker</title>
<link href="jquery-ui.css" rel="stylesheet">
<script type="text/javascript" src="jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="jquery-ui.js"></script>
<script type="text/javascript" src="dateinput-ch-ZN.js"></script>
<link href="red-datepicker.css" rel="stylesheet">
<script>
$(document).ready(function() {
$('#popupDatepicker').datepicker(); //绑定输入框
});
</script>
</head>
<body >
<h1>jQuery Datepicker</h1>
<p>输入框试红色皮肤日期插件</p><hr>
<input type="text" id="popupDatepicker" readonly>
</body>
</html>