mirror of
https://github.com/wu736139669/vczero.github.io.git
synced 2026-08-05 06:23:38 +00:00
18 lines
279 B
JavaScript
18 lines
279 B
JavaScript
(function(global){
|
|
|
|
var canlendar = new Calendar('calendar',new Date('2015-1'));
|
|
canlendar.showUI(function(date){
|
|
document.getElementById('calendar_time').innerHTML = date;
|
|
});
|
|
|
|
|
|
document.getElementById('guid').onclick = function(){
|
|
alert(11);
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
})(this);
|