javascript的日期加减
摘要:
function TimeCom( dateValue ) { var newCom = new Date( dateValue ); this.year = newCom.getYear(); this.month = newCom.getMonth()+1; this.day = newCom.getDate(); ... 阅读全文
posted @ 2006-12-05 19:20 linbaba 阅读(6945) 评论(0) 推荐(0) 编辑