摘要: function calendar(date) { // If no parameter is passed use the current date. if(date == null) date = new Date(); day = date.getDate(); month = date.getMonth(); year = date.getFullYear(); months = new ... 阅读全文
posted @ 2006-07-13 16:22 PeterLin88 阅读(649) 评论(0) 推荐(0) 编辑