我正在尝试用JavaScript构建一个小日历。我的日期在Firefox和Chrome中运行良好,但在IE中,日期函数返回NaN。
这是功能:
function buildWeek(dateText){
var headerDates='';
var newDate = new Date(dateText);
for(var d=0;d<7;d++){
headerDates += '<th>' + newDate + '</th>';
newDate.setDate(newDate.getDate()+1);
}
jQuery('div#headerDates').html('<table><tr>'+headerDates+'</tr></table>');
}
dateText
是本周的星期一,实际上在php中以“m,d,Y”的格式设置,例如"02, 01, 2010"
。
答案 0 :(得分:85)
从mysql datetime / timestamp格式:
var dateStr="2011-08-03 09:15:11"; //returned from mysql timestamp/datetime field
var a=dateStr.split(" ");
var d=a[0].split("-");
var t=a[1].split(":");
var date = new Date(d[0],(d[1]-1),d[2],t[0],t[1],t[2]);
我希望对某人有用。 适用于IE FF Chrome
答案 1 :(得分:65)
Date构造函数接受任何值。如果参数的原始[[value]]是数字,则创建的日期具有该值。如果primitive [[value]]是String,那么规范只保证Date构造函数和parse方法能够解析Date.prototype.toString和Date.prototype.toUTCString()的结果
设置日期的可靠方法是构建日期并使用setFullYear
和setTime
方法。
此处的示例如下: http://jibbering.com/faq/#parseDate
ECMA-262 r3未定义任何日期格式。将字符串值传递给Date构造函数或Date.parse具有依赖于实现的结果。最好避免。
<小时/> 编辑: comp.lang.javascript FAQ中的条目是: 可以使用以下内容将扩展的ISO 8601本地日期格式
YYYY-MM-DD
解析为Date
: -
/**Parses string formatted as YYYY-MM-DD to a Date object.
* If the supplied string does not match the format, an
* invalid Date (value NaN) is returned.
* @param {string} dateStringInRange format YYYY-MM-DD, with year in
* range of 0000-9999, inclusive.
* @return {Date} Date object representing the string.
*/
function parseISO8601(dateStringInRange) {
var isoExp = /^\s*(\d{4})-(\d\d)-(\d\d)\s*$/,
date = new Date(NaN), month,
parts = isoExp.exec(dateStringInRange);
if(parts) {
month = +parts[2];
date.setFullYear(parts[1], month - 1, parts[3]);
if(month != date.getMonth() + 1) {
date.setTime(NaN);
}
}
return date;
}
答案 2 :(得分:15)
不要使用“new Date()”,因为它将输入日期字符串作为本地时间:
new Date('11/08/2010').getTime()-new Date('11/07/2010').getTime(); //90000000
new Date('11/07/2010').getTime()-new Date('11/06/2010').getTime(); //86400000
我们应该使用“NewDate()”,它将输入作为GMT时间:
function NewDate(str)
{str=str.split('-');
var date=new Date();
date.setUTCFullYear(str[0], str[1]-1, str[2]);
date.setUTCHours(0, 0, 0, 0);
return date;
}
NewDate('2010-11-07').toGMTString();
NewDate('2010-11-08').toGMTString();
答案 3 :(得分:7)
这是另一种向Date
对象
用法:var d = (new Date()).parseISO8601("1971-12-15");
/** * Parses the ISO 8601 formated date into a date object, ISO 8601 is YYYY-MM-DD * * @param {String} date the date as a string eg 1971-12-15 * @returns {Date} Date object representing the date of the supplied string */ Date.prototype.parseISO8601 = function(date){ var matches = date.match(/^\s*(\d{4})-(\d{2})-(\d{2})\s*$/); if(matches){ this.setFullYear(parseInt(matches[1])); this.setMonth(parseInt(matches[2]) - 1); this.setDate(parseInt(matches[3])); } return this; };
答案 4 :(得分:2)
这是修复IE行为的代码片段 (v ['date']是逗号分隔的日期字符串,例如“2010,4,1”):
if($.browser.msie){
$.lst = v['date'].split(',');
$.tmp = new Date(parseInt($.lst[0]),parseInt($.lst[1])-1,parseInt($.lst[2]));
} else {
$.tmp = new Date(v['date']);
}
之前的方法没有考虑JS Date月份是基于ZERO的......
很抱歉没有解释太多,我在工作,只是觉得这可能会有所帮助。
答案 5 :(得分:2)
我总是以UTC时间存储我的日期。
这是我自己的功能,由我在本页中找到的不同功能组成。
它需要STRING作为mysql DATETIME格式(例如:2013-06-15 15:21:41)。使用正则表达式进行检查是可选的。您可以删除此部分以提高性能。
此函数返回时间戳。
DATETIME被视为UTC日期。 小心:如果您期望本地日期时间,则此功能不适合您。
function datetimeToTimestamp(datetime)
{
var regDatetime = /^[0-9]{4}-(?:[0]?[0-9]{1}|10|11|12)-(?:[012]?[0-9]{1}|30|31)(?: (?:[01]?[0-9]{1}|20|21|22|23)(?::[0-5]?[0-9]{1})?(?::[0-5]?[0-9]{1})?)?$/;
if(regDatetime.test(datetime) === false)
throw("Wrong format for the param. `Y-m-d H:i:s` expected.");
var a=datetime.split(" ");
var d=a[0].split("-");
var t=a[1].split(":");
var date = new Date();
date.setUTCFullYear(d[0],(d[1]-1),d[2]);
date.setUTCHours(t[0],t[1],t[2], 0);
return date.getTime();
}
答案 6 :(得分:1)
使用以下方法发送日期文本和发送日期文本的格式。它将解析并返回日期,这与浏览器无关。
function cal_parse_internal(val, format) {
val = val + "";
format = format + "";
var i_val = 0;
var i_format = 0;
var x, y;
var now = new Date(dbSysCurrentDate);
var year = now.getYear();
var month = now.getMonth() + 1;
var date = now.getDate();
while (i_format < format.length) {
// Get next token from format string
var c = format.charAt(i_format);
var token = "";
while ((format.charAt(i_format) == c) && (i_format < format.length)) {
token += format.charAt(i_format++);
}
// Extract contents of value based on format token
if (token == "yyyy" || token == "yy" || token == "y") {
if (token == "yyyy") { x = 4; y = 4; }
if (token == "yy") { x = 2; y = 2; }
if (token == "y") { x = 2; y = 4; }
year = _getInt(val, i_val, x, y);
if (year == null) { return 0; }
i_val += year.length;
if (year.length == 2) {
if (year > 70) {
year = 1900 + (year - 0);
} else {
year = 2000 + (year - 0);
}
}
} else if (token == "MMMM") {
month = 0;
for (var i = 0; i < MONTHS_LONG.length; i++) {
var month_name = MONTHS_LONG[i];
if (val.substring(i_val, i_val + month_name.length) == month_name) {
month = i + 1;
i_val += month_name.length;
break;
}
}
if (month < 1 || month > 12) { return 0; }
} else if (token == "MMM") {
month = 0;
for (var i = 0; i < MONTHS_SHORT.length; i++) {
var month_name = MONTHS_SHORT[i];
if (val.substring(i_val, i_val + month_name.length) == month_name) {
month = i + 1;
i_val += month_name.length;
break;
}
}
if (month < 1 || month > 12) { return 0; }
} else if (token == "MM" || token == "M") {
month = _getInt(val, i_val, token.length, 2);
if (month == null || month < 1 || month > 12) { return 0; }
i_val += month.length;
} else if (token == "dd" || token == "d") {
date = _getInt(val, i_val, token.length, 2);
if (date == null || date < 1 || date > 31) { return 0; }
i_val += date.length;
} else {
if (val.substring(i_val, i_val+token.length) != token) {return 0;}
else {i_val += token.length;}
}
}
// If there are any trailing characters left in the value, it doesn't match
if (i_val != val.length) { return 0; }
// Is date valid for month?
if (month == 2) {
// Check for leap year
if ((year%4 == 0 && year%100 != 0) || (year%400 == 0)) { // leap year
if (date > 29) { return false; }
} else {
if (date > 28) { return false; }
}
}
if (month == 4 || month == 6 || month == 9 || month == 11) {
if (date > 30) { return false; }
}
return new Date(year, month - 1, date);
}
答案 7 :(得分:1)
这是我的方法:
var parseDate = function(dateArg) {
var dateValues = dateArg.split('-');
var date = new Date(dateValues[0],dateValues[1],dateValues[2]);
return date.format("m/d/Y");
}
使用您正在使用的分隔符替换('-')
。
答案 8 :(得分:0)
JavaScript中的Date构造函数需要一个parse()方法支持的日期格式的字符串。
显然,IE中不支持您指定的格式,因此您需要更改PHP代码,或者在JavaScript中手动解析字符串。
答案 9 :(得分:0)
您可以使用以下代码解析ISO8601日期字符串:
function parseISO8601(d) {
var timestamp = d;
if (typeof (d) !== 'number') {
timestamp = Date.parse(d);
}
return new Date(timestamp);
};
答案 10 :(得分:0)
尝试使用getDate
的{{1}}功能。
datepicker
答案 11 :(得分:0)
我尝试了上述所有解决方案,但对我没有任何帮助。 我做了一些头脑风暴,发现了这一点,并且在IE11中也能正常工作。
value="2020-08-10 05:22:44.0";
var date=new Date(value.replace(" ","T")).$format("d/m/yy h:i:s");
console.log(date);
如果$ format不适用于您,则仅使用format。