26 lines
634 B
HTML
26 lines
634 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>7-453 值日排班</title>
|
|
<link rel="stylesheet" href="jquery-ui.min.css" />
|
|
<link rel="stylesheet" href="jquery-ui.theme.min.css" />
|
|
<script src="jquery.min.js"></script>
|
|
<script src="jquery-ui.min.js"></script>
|
|
<script src="config.js"></script>
|
|
<script src="main.js"></script>
|
|
</head>
|
|
<body>
|
|
<p id="date"></p>
|
|
<p id="group"></p>
|
|
<p id="content"></p>
|
|
<p>
|
|
<button id="prev">昨天</button>
|
|
<button id="next">明天</button>
|
|
</p>
|
|
<p>
|
|
或者选择日期:
|
|
<input type="text" id="datepicker" />
|
|
</p>
|
|
</body>
|
|
</html> |