在 IE 中使用此代码:
if(!Date.prototype.toISOString) Date.prototype.toISOString = function(){
var padZero = function(str, len){while(str.length < len) str = '0' + str; return str;};
var ret = padZero(''+this.getUTCFullYear(), 4)
+ '-' + padZero(''+this.getUTCMonth(), 2)
+ '-' + padZero(''+this.getUTCDate(), 2)
+ 'T' + padZero(''+this.getUTCHours(), 2)
+ ':' + padZero(''+this.getUTCMinutes(), 2)
+ ':' + padZero(''+this.getUTCSeconds(), 2)
+ 'Z';
alert(ret);
return ret;
}
我收到以下错误..
执行 urlrewrite 查询时出错:err:FORG0001: 类似日期时间的值 '2012-00-05T09:09:46Z' 的非法词法形式 Month 字段的值 0 无效。[第 42 行第 9 栏]
我已经尝试了对月份参数的多次修复,但似乎无法正确解决。所以,任何帮助都会得到很大的帮助。
顺便说一句:他们上面的代码在 Firefox 中运行良好..去图,对吧?