javascript当中Date对象用法

Date对象
马克- to-win:马克 java社区:防盗版实名手机尾号: 73203。



例 2.1

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<Script>
/*马克-to-win:Global有个Date()这个方法。*/
 /*When the Global object is created, it always has at least the following properties:
       Object object       Function object       Array object       String object
       Boolean object       Number  object       Date object       Math object
       Value properties
   */
    var today = new Date();
    var month = today.getMonth()+1;
    var date  = today.getDate();
    var day   = today.getDay();
    document.write("今天是");
    document.write(month+"月");
    document.write(date+"日");
    document.write("星期"+day);//注意:是阿拉伯数字并非中文;请试改为中文习惯
    var s="调试站位";
</Script>
</head>
<body>

</body>
</html>

输出结果:

今天是10月16日星期1




例 2.2

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
</head>
<SCRIPT LANGUAGE="JavaScript">
<!-- 马克-to-win
var d = new Date();                 // 创建 Date 对象

 d.setMonth(7-1);                     // 设置月份
 d.setDate(8);                     // 设置日期
 d.setHours(1);
 d.setMinutes(3);
 d.setSeconds(5);                
document.write(d);
document.write(d.toLocaleString());
//-->
</SCRIPT>
</head>
<body>

</body>
</html>

输出结果:

Sat Jul 08 2017 01:03:05 GMT+08002017/7/8 上午1:03:05