admin管理员组文章数量:1344645
Suppose I have 2 datetime variables:
var fromdt = "2013/05/29 12:30 PM";
var todt = "2013/05/29 01:30 AM";
I want to pare these 2 datetimes. How can I get Javascript to recognize whether the time is AM or PM?
I think Javascript will pare the time in 24 hours format. Do I need to convert the time to 24 hour format? Is that correct? Could someone please suggest the correct solution....
Suppose I have 2 datetime variables:
var fromdt = "2013/05/29 12:30 PM";
var todt = "2013/05/29 01:30 AM";
I want to pare these 2 datetimes. How can I get Javascript to recognize whether the time is AM or PM?
I think Javascript will pare the time in 24 hours format. Do I need to convert the time to 24 hour format? Is that correct? Could someone please suggest the correct solution....
Share Improve this question edited Jun 2, 2013 at 9:34 Erik Schierboom 16.7k10 gold badges66 silver badges81 bronze badges asked Jun 2, 2013 at 7:20 DylanDylan 1371 gold badge2 silver badges11 bronze badges 10- 1 take a look at momentjs. – c0deNinja Commented Jun 2, 2013 at 7:23
- Are they in 24 hour format? – JJJ Commented Jun 2, 2013 at 7:23
- no 12 hours format....like AM and PM – Dylan Commented Jun 2, 2013 at 7:24
-
5
So how would YOU recognize if
01:30
is a daytime or night time? – zerkms Commented Jun 2, 2013 at 7:24 - 1 So the strings do have "AM" or "PM" in them? You didn't think that was relevant information? – JJJ Commented Jun 2, 2013 at 7:28
2 Answers
Reset to default 8Just use straight javascript functions
var fromdt = "2013/05/29 12:30 PM";
var todt = "2013/05/29 01:30 AM";
var from = new Date(Date.parse(fromdt));
var to = new Date(Date.parse(todt));
alert(from);
alert(to)
if (from > to) alert("From");
else alert("To");
Once the date is parsed into date form, you can do what you like with it. And you can pare dates using the standard operator signs ( >, < etc)
I'm not sure what you need to do with them, but http://www.w3schools./jsref/jsref_obj_date.asp is an okay reference.
And heres a crappy sandbox with the above code http://jsfiddle/QpFcW/
and a better one that XX deleted :( http://jsfiddle/QpFcW/1/
Use this function
function get_time() {
var time_t = "";
var d = new Date();
var cur_hour = d.getHours();
cur_hour < 12 ? (time_t = "am") : (time_t = "pm");
cur_hour == 0 ? (cur_hour = 12) : (cur_hour = cur_hour);
cur_hour > 12 ? (cur_hour = cur_hour - 12) : (cur_hour = cur_hour);
var curr_min = d.getMinutes().toString();
var curr_sec = d.getSeconds().toString();
if (curr_min.length == 1) {
curr_min = "0" + curr_min;
}
if (curr_sec.length == 1) {
curr_sec = "0" + curr_sec;
}
$("#updatedTime").html(
cur_hour + ":" + curr_min + ":" + curr_sec + " " + time_t
);
alert(cur_hour + ":" + curr_min + ":" + curr_sec + " " + time_t);
}
本文标签: jqueryJavaScript AMPM time comparisonStack Overflow
版权声明:本文标题:jquery - JavaScript AMPM time comparison - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743739785a2530676.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论