摘要:
Date 对象用于处理日期和时间。 创建 Date 对象的语法: var myDate=new Date() Date 对象会自动把当前日期和时间保存为其初始值。 参数形式有以下5种: new Date("month dd,yyyy hh:mm:ss"); new Date("month dd,yyyy"); new Date(yyyy,mth,dd,hh,mm,ss); new Date(yyyy,mth,dd); new Date(ms);注意最后一种形式,参数表示的是需要创建的时间和GMT时间1970年1月1日之间相差的毫秒数。各种函数的含义如下: 阅读全文
摘要:
JS脚本,时间判断问题悬赏分:100 - 解决时间:2007-8-10 13:18<script>function show(){var date = new Date(); //日期对象var now = "";now = date.getFullYear()+"-"; //读英文就行了now = now + (date.getMonth()+1)+"-";//取月的时候取的是当前月-1如果想取当前月+1就可以了now = now + date.getDate()+" ";now = now + da 阅读全文