ホームページ > 記事 > ウェブフロントエンド > JavaScript Date object_javascriptスキルの詳細説明
この記事では主に Date 日時オブジェクトの操作について紹介します。具体的な内容は次のとおりです。
目次
1. はじめに: Date オブジェクトについて説明します。
2. コンストラクター: Date オブジェクトのコンストラクター new Date() のメソッドをいくつか導入します。
3. インスタンス メソッド: Date オブジェクトの get、set およびその他のインスタンス メソッドを紹介します。
4. 静的メソッド: Date オブジェクトの静的メソッドの紹介: Date.now()、Date.parse() など。
5. 実践的な操作: Date オブジェクトの例をいくつか紹介します: カウントダウンの取得、2 つの Date オブジェクトのサイズの比較など。
1. はじめに
1.1 説明
Dateオブジェクトは日付と時刻を操作するためのオブジェクトです。 Date オブジェクトは、メソッドを介して日付と時刻のみを操作できます。
1.2 プロパティ
なし。Date オブジェクトはメソッドを通じてのみ日付と時刻を操作できます。
2. コンストラクター
2.1 new Date(): 現在のローカル日付と時刻を返します
パラメータ: なし
戻り値:
{Date} は、ローカルの日付と時刻を表す Date オブジェクトを返します。
例:
var dt = new Date(); console.log(dt); // => 返回一个表示本地日期和时间的Date对象
2.2 新しい日付(ミリ秒): ミリ秒を日付オブジェクトに変換します
パラメータ:
①milliseconds {int}: ミリ秒数。「1970/01/01 00:00:00」を起点としたミリ秒数を示します。
注: 現在のタイムゾーンを開始点に追加する必要があります。北京時間のタイムゾーンは東 8 区です。実際の開始時刻は「1970/01/01 08:00:00」です。
戻り値:
{Date} は、重ね合わせた Date オブジェクトを返します。
例:
var dt = new Date(1000 * 60 * 1); // 前进1分钟的毫秒数 console.log(dt); // => {Date}:1970/01/01 08:01:00 dt = new Date(-1000 * 60 * 1); // 倒退1分钟的毫秒数 console.log(dt); // => {Date}:1970/01/01 07:59:00
2.3 new Date(dateStr): 文字列を Date オブジェクトに変換します
パラメータ:
①dateStr {string}: Date オブジェクトに変換できる文字列 (時刻は省略可能) 文字列には主に 2 つの形式があります。
1) yyyy/MM/dd HH:mm:ss (推奨): 時刻を省略した場合、返される Date オブジェクトの時刻は 00:00:00 です。2) yyyy-MM-dd HH:mm:ss: 時刻を省略した場合、返される Date オブジェクトの時刻は 08:00:00 (+ ローカル タイム ゾーン) になります。時刻を省略しないと、この文字列は IE で変換できません!
戻り値:
{Date} は、変換された Date オブジェクトを返します。
例:
var dt = new Date('2014/12/25'); // yyyy/MM/dd console.log(dt); // => {Date}:2014/12/25 00:00:00 dt = new Date('2014/12/25 12:00:00'); // yyyy/MM/dd HH:mm:ss console.log(dt); // => {Date}:2014/12/25 12:00:00 dt = new Date('2014-12-25'); // yyyy-MM-dd console.log(dt); // => {Date}:2014-12-25 08:00:00 (加上了东8区的时区) dt = new Date('2014-12-25 12:00:00'); // yyyy-MM-dd HH:mm:ss (注意:此转换方式在IE中会报错!) console.log(dt); // => {Date}:2014-12-25 12:00:00
パラメータ:
①年 {int}: 4 桁の年。例: 1999、2014
②month {int}: 2桁の月。計算は 0 から始まり、0 は 1 月、11 は 12 月を表します。
③opt_day {int} オプション: 1 から数えて 2 桁の数字。1 は No. 1 を意味します。
④opt_hours {int} オプション: 2 桁の値。
⑤opt_ minutes {int} オプション: 分値 0 ~ 59。
⑥opt_秒 {int} オプション: 秒、数値なし。0 ~ 59。
⑦opt_milliseconds {int} オプション: ミリ秒の値 0 ~ 999。
戻り値:
{Date} は、変換された Date オブジェクトを返します。
例:
var dt = new Date(2014, 11); // 2014年12月(这里输入的月份数字为11) console.log(dt); // => {Date}:2014/12/01 00:00:00 dt = new Date(2014, 11, 25); // 2014年12月25日 console.log(dt); // => {Date}:2014/12/25 00:00:00 dt = new Date(2014, 11, 25, 15, 30, 40); // 2014年12月25日 15点30分40秒 console.log(dt); // => {Date}:2014/12/25 15:30:40 dt = new Date(2014, 12, 25); // 2014年13月25日(这里输入的月份数字为12,表示第13个月,跳转到第二年的1月) console.log(dt); // => {Date}:2015/01/25
3. インスタンスメソッド
Date オブジェクトのインスタンス メソッドは、主にローカル時間と UTC 時間の 2 つの形式に分けられます。通常、これら 2 つの時刻形式では同じメソッドが動作します (メソッド名に UTC が付いているものは UTC 時間の動作です)。ここでは主にローカル時間の動作を紹介します。
3.1.1 getFull Year(): Date オブジェクトの年の値を 4 桁で返します。
3.1.2 getMonth(): Date オブジェクトの月の値を返します。 0 から始まるため、実際の月 = 戻り値 + 1 となります。
3.1.3 getDate(): Date オブジェクトの月の日付値を返します。値の範囲は 1 ~ 31 です。
3.1.4 getHours(): Date オブジェクトの時間の値を返します。
3.1.5 getMinutes(): Date オブジェクトの分の値を返します。
3.1.6 getSeconds(): Date オブジェクトの秒の値を返します。
3.1.7 getMilliseconds(): Date オブジェクトのミリ秒値を返します。
3.1.8 getDay(): Date オブジェクトの曜日の値を返します。0 は日曜日、1 は月曜日、2 は火曜日などです。
3.1.9 getTime(): Date オブジェクトと「1970/01/01 00:00:00」の間のミリ秒値を返します (北京時間のタイムゾーンは東 8 区で、実際の開始時刻は次のとおりです)。 1970/01/01 08:00:00')。
例:
dt.getFullYear(); // => 2014:年 dt.getMonth(); // => 11:月;实际为12月份(月份从0开始计算) dt.getDate(); // => 25:日 dt.getHours(); // => 15:时 dt.getMinutes(); // => 30:分 dt.getSeconds(); // => 40:秒 dt.getMilliseconds(); // => 333:毫秒 dt.getDay(); // => 4:星期几的值 dt.getTime(); // => 1419492640333 :返回Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
3.2.1 setFullyear(year, opt_month, opt_date): Date オブジェクトの年の値を 4 桁で設定します。
3.2.2 setMonth(month, opt_date): Date オブジェクトの月の値を設定します。 0 は 1 月を表し、11 は 12 月を表します。
3.2.3 setDate(date): Date オブジェクトの月の日付値を設定します。値の範囲は 1 ~ 31 です。
3.2.4 setHours(hour, opt_min, opt_sec, opt_msec): Date オブジェクトの時間の値を設定します。
3.2.5 setMinutes(min, opt_sec, opt_msec): Date オブジェクトの分の値を設定します。
3.2.6 setSeconds(sec, opt_msec): Date オブジェクトの秒値を設定します。
3.2.7 setMilliseconds(msec): Date オブジェクトのミリ秒値を設定します。
例:
var dt = new Date(); dt.setFullYear(2014); // => 2014:年 dt.setMonth(11); // => 11:月;实际为12月份(月份从0开始计算) dt.setDate(25); // => 25:日 dt.setHours(15); // => 15:时 dt.setMinutes(30); // => 30:分 dt.setSeconds(40); // => 40:秒 dt.setMilliseconds(333); // => 333:毫秒 console.log(dt); // => 2014年12月25日 15点30分40秒 333毫秒
3.3 其他方法
3.3.1 toString() :将Date转换为一个'年月日 时分秒'字符串
3.3.2 toLocaleString() :将Date转换为一个'年月日 时分秒'的本地格式字符串
3.3.3 toDateString() :将Date转换为一个'年月日'字符串
3.3.4 toLocaleDateString() :将Date转换为一个'年月日'的本地格式字符串
3.3.5 toTimeString() :将Date转换为一个'时分秒'字符串
3.3.6 toLocaleTimeString() :将Date转换为一个'时分秒'的本地格式字符串
3.3.7 valueOf() :与getTime()一样, 返回Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
示例:
var dt = new Date(); console.log(dt.toString()); // => Tue Dec 23 2014 22:56:11 GMT+0800 (中国标准时间) :将Date转换为一个'年月日 时分秒'字符串 console.log(dt.toLocaleString()); // => 2014年12月23日 下午10:56:11 :将Date转换为一个'年月日 时分秒'的本地格式字符串 console.log(dt.toDateString()); // => Tue Dec 23 2014 :将Date转换为一个'年月日'字符串 console.log(dt.toLocaleDateString()); // => 2014年12月23日 :将Date转换为一个'年月日'的本地格式字符串 console.log(dt.toTimeString()); // => 22:56:11 GMT+0800 (中国标准时间) :将Date转换为一个'时分秒'字符串 console.log(dt.toLocaleTimeString()); // => 下午10:56:11 :将Date转换为一个'时分秒'的本地格式字符串 console.log(dt.valueOf()); // => 返回Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
四. 静态方法
4.1 Date.now()
说明:返回当前日期和时间的Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
参数:无
返回值:
{int} :当前时间与起始时间之间的毫秒数。
示例:
console.log(Date.now()); // => 1419431519276
4.2 Date.parse(dateStr)
说明:把字符串转换为Date对象 ,然后返回此Date对象与'1970/01/01 00:00:00'之间的毫秒值(北京时间的时区为东8区,起点时间实际为:'1970/01/01 08:00:00')
参数:
①dateStr {string} :可转换为Date对象的字符串(可省略时间);字符串的格式主要有两种:
1) yyyy/MM/dd HH:mm:ss (推荐):若省略时间,返回的Date对象的时间为 00:00:00。
2) yyyy-MM-dd HH:mm:ss :若省略时间,返回的Date对象的时间为 08:00:00(加上本地时区)。若不省略时间,此字符串在IE中返回NaN(非数字)!
返回值:
{int} 返回转换后的Date对象与起始时间之间的毫秒数。
示例:
console.log(Date.parse('2014/12/25 12:00:00')); // => 1419480000000 console.log(Date.parse('2014-12-25 12:00:00')); // => 1419480000000 (注意:此转换方式在IE中返回NaN!)
五. 实际操作
5.1 C#的DateTime类型转换为Js的Date对象
说明:C#的DateTime类型通过Json序列化返回给前台的格式为:"\/Date(1419492640000)\/" 。中间的数字,表示DateTime的值与起始时间之间的毫秒数。
示例:
后台代码:简单的ashx
public void ProcessRequest (HttpContext context) { System.Web.Script.Serialization.JavaScriptSerializer js = new System.Web.Script.Serialization.JavaScriptSerializer(); DateTime dt = DateTime.Parse("2014-12-25 15:30:40"); string rs = js.Serialize(dt); // 序列化成Json context.Response.ContentType = "text/plain"; context.Response.Write(rs); }
前台代码:
var dateTimeJsonStr = '\/Date(1419492640000)\/'; // C# DateTime类型转换的Json格式 var msecStr = dateTimeJsonStr.toString().replace(/\/Date\(([-]?\d+)\)\//gi, "$1"); // => '1419492640000' :通过正则替换,获取毫秒字符串 var msesInt = Number.parseInt(msecStr); // 毫秒字符串转换成数值 var dt = new Date(msesInt); // 初始化Date对象 console.log(dt.toLocaleString()); // => 2014年12月25日 下午3:30:40
5.2 获取倒计时
说明:计算当前时间离目的时间相差多少天时分。
示例:
/** * 返回倒计时 * @param dt {Date}:目的Date对象 * @return {Strin} :返回倒计时:X天X时X分 */ function getDownTime(dt) { // 1.获取倒计时 var intervalMsec = dt - Date.now(); // 目的时间减去现在的时间,获取两者相差的毫秒数 var intervalSec = intervalMsec / 1000; // 转换成秒数 var day = parseInt(intervalSec / 3600 / 24); // 天数 var hour = parseInt((intervalSec - day * 24 * 3600) / 3600); // 小时 var min = parseInt((intervalSec - day * 24 * 3600 - hour * 3600) / 60); // 分钟 // 2.若相差的毫秒小于0 ,表示目的时间小于当前时间,这时的取的值都是负的:-X天-时-分,显示时,只显示天数前面为负的就行。 if (intervalMsec < 0) { hour = 0 - hour; min = 0 - min; } // 3.拼接字符串并返回 var rs = day + '天' + hour + '时' + min + '分'; return rs; } // 当前时间:2014/12/28 13:26 console.log(getDownTime(new Date('2015/06/01'))); // => 154天10时33分 console.log(getDownTime(new Date('2014/01/01'))); // => -361天13时26分
5.3 比较2个Date对象的大小
说明:可以对比2者的与起始时间的毫秒数,来区分大小。
示例:
var dt1 = new Date('2015/12/01'); var dt2 = new Date('2015/12/25'); console.log(dt1 > dt2); // => false
以上就是本文的全部内容,希望对大家的学习有所帮助。