mirror of
https://github.com/wu736139669/vczero.github.io.git
synced 2026-08-05 06:23:38 +00:00
add ui
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<script type="text/javascript" src="calendar.js"></script>
|
||||
<script type="text/javascript">
|
||||
function showCalendar(){
|
||||
var c = new Calendar('calendar',new Date());
|
||||
c.showUI(function(date){
|
||||
alert(date);
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body onload="showCalendar()">
|
||||
<div id="calendar" style="width:390px; height:270px;"></div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user