如何在JavaScript中克隆Date对象 [英] How to clone a Date object in JavaScript

查看:109
本文介绍了如何在JavaScript中克隆Date对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

将Date变量分配给另一个变量会将引用复制到SAME值。这意味着改变一个将改变另一个。我如何实际克隆或复制该值?

Assigning a Date variable to another one will copy the reference to the SAME value. This means that changing one will change the other. How can I actually clone or copy the value?

推荐答案

使用 Date 对象的 getTime() 方法,返回自1970年1月1日00:00:00(纪元时间):

var date = new Date();
var copiedDate = new Date(date.getTime());

在Safari 4中,您还可以写:

In Safari 4, you can also write:

var date = new Date();
var copiedDate = new Date(date);

...但我不确定这是否适用于其他浏览器。 (它似乎适用于IE8)。

...but I'm not sure whether this works in other browsers. (It seems to work in IE8).

这篇关于如何在JavaScript中克隆Date对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆