この記事では、JavaScript の Date メソッドの概要と例を紹介します。必要な方は参考にしてください。
Dateメソッド
console.log(typeof Date);// "function"
Dateインスタンス
console.log(typeof new Date()); // "object" console.log(new Date()); // 获取本机的系统时间; var time = new Date(); console.log(time.getFullYear()); // 获取时间年; console.log(time.getMonth()) // 获取时间月 取值范围【0-11】 console.log(time.getDate()); // 获取时间日【1-31】 console.log(time.getDay()); // 获取星期几;【0-6】 星期日是0; console.log(time.getHours()) // 获取小时数 【0-23】 console.log(time.getMinutes()); // 获取分钟数 【0-59】 console.log(time.getSeconds()); // 获取时间秒【0-59】 console.log(time.getMilliseconds()); // 获取毫秒数【0-999】 console.log(time.getTime()); // 当前时间距离1970-1-1日早上八点的毫秒数; console.log(Date.now()); // 时间戳:
関連推奨事項:
JavaScriptイベント委任コードの実装とコードの最適化
JSチュートリアル - 動的プログラミングアルゴリズムのナップサック容量の問題
以上がJavaScript の Date メソッドの概要と例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。