最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

JavaScript中Date对象的常用方法示例_基础知识

来源:动视网 责编:小采 时间:2020-11-27 21:44:46
文档

JavaScript中Date对象的常用方法示例_基础知识

JavaScript中Date对象的常用方法示例_基础知识:getFullYear() 使用 getFullYear() 获取年份。 源代码: ​ Click the button to display the full year of todays date. ​ Try it ​ function myFunction() { var d = new D
推荐度:
导读JavaScript中Date对象的常用方法示例_基础知识:getFullYear() 使用 getFullYear() 获取年份。 源代码: ​ Click the button to display the full year of todays date. ​ Try it ​ function myFunction() { var d = new D


getFullYear()
使用 getFullYear() 获取年份。
源代码:

Click the button to display the full year of todays date.

测试结果:

2015


getTime()
getTime() 返回从 1970 年 1 月 1 日至今的毫秒数。
源代码:

Click the button to display the number of milliseconds since midnight, January 1, 1970.


测试结果:

1445669203860

setFullYear()
如何使用 setFullYear() 设置具体的日期。
源代码:

Click the button to display a date after changing the year, month, and day.

测试结果:

Tue Nov 03 2020 14:47:46 GMT+0800 (中国标准时间)

toUTCString()
如何使用 toUTCString() 将当日的日期(根据 UTC)转换为字符串。

源代码:

Click the button to display the UTC date and time as a string.

测试结果:

Sat, 24 Oct 2015 06:49:05 GMT

getDay()
如何使用 getDay() 和数组来显示星期,而不仅仅是数字。
源代码:

Click the button to display todays day of the week.

测试结果:

Saturday

Display a clock
如何在网页上显示一个钟表。
源代码:




文档

JavaScript中Date对象的常用方法示例_基础知识

JavaScript中Date对象的常用方法示例_基础知识:getFullYear() 使用 getFullYear() 获取年份。 源代码: ​ Click the button to display the full year of todays date. ​ Try it ​ function myFunction() { var d = new D
推荐度:
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top