视频还没讲完呢 怎么就没了。。。

Original 2019-03-02 20:39:53 204
abstract:<!doctype html><html> <head>  <meta charset="UTF-8">  <meta name="Generator" content="1m">  <meta name="Author&q

<!doctype html>
<html>
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="1m">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
<!--   <link rel="stylesheet" type="text/css" href="css/">
  <link rel="shortcut icon" type="image/x-icon" href="img/标题logo" -->
  <title>页面名称</title>
 </head>
 <body>
  <script type="text/javascript">
// 日期对象是用以处理日期和时间的
// 获取当前时间
 var myday=new Date()
 document.write(myday+"<br>")
 //document.write(myday)
 //获取年份 geiFullYear()
 document.write(myday.getFullYear()+"年")
// 获取月份getMonth()  0代表的1月   11代表的是12月。
document.write(myday.getMonth()+"月")
var month=new Array(12)
    month[0]="一月"
    month[1]="二月"
    month[2]="三月"
    month[3]="四月"
    month[4]="五月"
    month[5]="六月"
    month[6]="七月"
    month[7]="八月"
    month[8]="九月"
    month[9]="十月"
    month[10]="十一月"
    month[11]="十二月"
    document.write
  </script>
 </body>
</html>

Release Notes

Popular Entries