- CoffeeScript 教程
- CoffeeScript - 首页
- CoffeeScript - 概述
- CoffeeScript - 环境
- CoffeeScript - 命令行工具
- CoffeeScript - 语法
- CoffeeScript - 数据类型
- CoffeeScript - 变量
- CoffeeScript - 运算符和别名
- CoffeeScript - 条件语句
- CoffeeScript - 循环
- CoffeeScript - 列表推导式
- CoffeeScript - 函数
- CoffeeScript 面向对象编程
- CoffeeScript - 字符串
- CoffeeScript - 数组
- CoffeeScript - 对象
- CoffeeScript - 范围
- CoffeeScript - 展开运算符
- CoffeeScript - 日期
- CoffeeScript - 数学
- CoffeeScript - 异常处理
- CoffeeScript - 正则表达式
- CoffeeScript - 类和继承
- CoffeeScript 进阶
- CoffeeScript - Ajax
- CoffeeScript - jQuery
- CoffeeScript - MongoDB
- CoffeeScript - SQLite
- CoffeeScript 有用资源
- CoffeeScript - 快速指南
- CoffeeScript - 有用资源
- CoffeeScript - 讨论
CoffeeScript 日期 - setUTCFullYear()
描述
该setUTCFullYear()方法根据世界标准时间设置指定日期的完整年份。
语法
以下是setUTCFullYear()方法的语法。
Date.setUTCFullYear(yearValue[, monthValue[, dayValue]])
参数详情
yearValue − 指定年份数值的整数,例如,2008。
monthValue − 0 到 11 之间的整数,表示 1 月到 12 月。
dayValue − 1 到 31 之间的整数,表示月份中的某一天。如果指定dayValue参数,则必须同时指定monthValue。
如果不指定monthValue和dayValue参数,则使用getMonth和getDate方法返回的值。如果指定的参数超出预期范围,setUTCFullYear会尝试相应地更新其他参数和Date对象中的日期信息。例如,如果将monthValue指定为15,则年份加1(year + 1),月份使用3。
示例
以下示例演示了在 CoffeeScript 中使用setUTCFullYear()方法。将此代码保存到名为date_setutcfullYear.coffee的文件中。
dt = new Date "February 19, 2016 23:15:00" dt.setUTCFullYear 20 console.log dt
打开命令提示符并编译 .coffee 文件,如下所示。
c:\> coffee -c date_setutcfullYear.coffee
编译后,它将生成以下 JavaScript 代码。
// Generated by CoffeeScript 1.10.0 (function() { var dt; dt = new Date("February 19, 2016 23:15:00"); dt.setUTCFullYear(20); console.log(dt); }).call(this);
现在,再次打开命令提示符,并运行 CoffeeScript 文件,如下所示。
c:\> coffee date_setutcfullYear.coffee
执行后,CoffeeScript 文件将产生以下输出。
Wed Feb 19 20 23:15:00 GMT+0530 (India Standard Time)
coffeescript_date.htm
广告