mirror of
https://github.com/wu736139669/vczero.github.io.git
synced 2026-08-05 06:23:38 +00:00
18 lines
422 B
HTML
18 lines
422 B
HTML
<!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> |