无需更改我正在调试的计算机的日期/时间,是否可以通过开发工具或在控制台中运行一些自定义JavaScript来设置/更改Google Chrome认为的时间或日期是
IE,以便new Date()
返回您设置浏览器的内容,而不是系统的日期。
有很多方法,但调试不同的日期/时间会很方便。
答案 0 :(得分:4)
使用:
var fake_date = new Date("October 6, 2016 11:13:00");
//overriding date function
Date = function(){return fake_date;};
var new_date = new Date();
alert(new_date);
答案 1 :(得分:0)
只需使用setTime
功能:
var d = new Date();
d.setTime(1332403882588);
int参数是UNIX时间戳,以毫秒为单位。
答案 2 :(得分:0)
您需要编写一个包装新Date的函数并返回日期的修改版本。例如:
scanf
在最后一行,您可以指定覆盖当前时间的值:
/**
* Overwrite Date constructor with configurable current time
* @param {object} Date - The native Date object
* @param {Number} year - Optional. Default year to this.
* @param {Number} month - Optional. Default month to this.
* @param {Number} day - Optional. Default day to this.
* @param {Number} minute - Optional. Default minute to this.
* @param {Number} second - Optional. Default second to this.
* @param {Number} milliseconds - Optional. Default milliseconds to this.
*/
Date = function (Date, year, month, day, hour, minute, second, milliseconds) {
function MyDate() {
// Get arguments passed into new Date()
var args = Array.prototype.slice.call(arguments);
// Add null to start
args.unshift(null);
// Call new Date() with the original arguments
var date = new (Function.prototype.bind.apply(Date, args));
if (typeof year !== 'undefined' && arguments.length === 0) {
date.setFullYear(year);
}
if (typeof month !== 'undefined' && arguments.length === 0) {
date.setMonth(month);
}
if (typeof day !== 'undefined' && (arguments.length === 0 || arguments.length === 2)) {
date.setDate(day);
}
if (typeof hour !== 'undefined' && (arguments.length === 0 || arguments.length === 3)) {
date.setHours(hour);
}
if (typeof minute !== 'undefined' && (arguments.length === 0 || arguments.length === 4)) {
date.setMinutes(minute);
}
if (typeof second !== 'undefined' && (arguments.length === 0 || arguments.length === 5)) {
date.setSeconds(second);
}
if (typeof milliseconds !== 'undefined' && (arguments.length === 0 || arguments.length === 6)) {
date.setMilliseconds(milliseconds);
}
return date;
}
MyDate.prototype = Date.prototype;
return MyDate;
}(Date);
这样做的好处是任何带参数的现有新Date()调用仍能正常工作:
}(Date, 1990); // Year
}(Date, 1990, 05); // Year/month
}(Date, 1990, 05, 11); // Year/month/day
}(Date, 1990, 05, 11, 13); // Year/month/day Hour
}(Date, 1990, 05, 11, 13, 05); // Year/month/day Hour:minute
}(Date, 1990, 05, 11, 13, 05, 01); // Year/month/day Hour:minute:second
此外,时间不会冻结,因此秒值会随正常时钟而增加:
new Date(2001, 02, 03);
> Mar 03 2001