admin管理员组文章数量:1341419
This function converts time to 12hr format, credits to a contributor on Stack Overflow for this function:
JS
function ampm(date) {
var hours = date.getHours();
var minutes = date.getMinutes();
var ampm = hours >= 12 ? 'pm' : 'am';
hours = hours % 12;
hours = hours ? hours : 12; // 0 should be 12
minutes = minutes < 10 ? '0'+minutes : minutes; // if minutes less than 10, add a 0 in front of it ie: 6:6 -> 6:06
var strTime = hours + ':' + minutes + ' ' + ampm;
document.getElementById('time').value = strTime;
return strTime;
}
////This is how the value of the time input is supposed to be displayed in 12 hr format
_("display_time").innerHTML = ampm(new Date());
HTML
<!--This is the input field where a user selects a time-->
<input id="time" placeholder="Time" type="time" name="time" />
<!--This is where the value of the time input is supposed to be displayed in 12 hr format-->>
<span id="display_time"></span>
My question is how do I get the value of the time input field to be displayed on the span tag in 12hr format. This code is semi-working.
It displays the time in 12hr format but only displays the current time. The flow chart would be something like, user selects time in time input -> some JS to convert to 12hr format -> display as 12hr format in span tag. Any advice or suggestions?
This function converts time to 12hr format, credits to a contributor on Stack Overflow for this function:
JS
function ampm(date) {
var hours = date.getHours();
var minutes = date.getMinutes();
var ampm = hours >= 12 ? 'pm' : 'am';
hours = hours % 12;
hours = hours ? hours : 12; // 0 should be 12
minutes = minutes < 10 ? '0'+minutes : minutes; // if minutes less than 10, add a 0 in front of it ie: 6:6 -> 6:06
var strTime = hours + ':' + minutes + ' ' + ampm;
document.getElementById('time').value = strTime;
return strTime;
}
////This is how the value of the time input is supposed to be displayed in 12 hr format
_("display_time").innerHTML = ampm(new Date());
HTML
<!--This is the input field where a user selects a time-->
<input id="time" placeholder="Time" type="time" name="time" />
<!--This is where the value of the time input is supposed to be displayed in 12 hr format-->>
<span id="display_time"></span>
My question is how do I get the value of the time input field to be displayed on the span tag in 12hr format. This code is semi-working.
It displays the time in 12hr format but only displays the current time. The flow chart would be something like, user selects time in time input -> some JS to convert to 12hr format -> display as 12hr format in span tag. Any advice or suggestions?
Share Improve this question edited Aug 21, 2015 at 10:40 cнŝdk 32.2k7 gold badges60 silver badges80 bronze badges asked Aug 21, 2015 at 7:51 Arvin FloresArvin Flores 4872 gold badges8 silver badges20 bronze badges 3- To be honest, it would seem like you are plicating your life. There are plenty of stackoverflow questions regarding time and date objects proposing simpler solutions. You just have to search a bit. – kockburn Commented Aug 21, 2015 at 8:01
- How are you planning to let the user to "select time in time input"? What format is that time(string? time? timestamp?) – A Web-Developer Commented Aug 21, 2015 at 8:02
- See this stackoverflow./questions/4904667/… – aSoler Commented Aug 21, 2015 at 8:03
3 Answers
Reset to default 3Your input value will be a string, not a date. I've set up a jsfiddle where I've modified your javascript to work on a string.
$('#time').on('change', function() {
var date = $('#time').val().split(':');
var hours = date[0];
var minutes = date[1];
$('#display_time').text(ampm(hours, minutes));
});
function ampm(hours, minutes) {
var ampm = hours >= 12 ? 'pm' : 'am';
hours = hours % 12 || 12;
minutes = minutes || 0;
minutes = minutes < 10 ? '0'+minutes : minutes;
return hours + ':' + minutes + ' ' + ampm;
}
There's no need to use Date
and its methods the input is a String
so you better use .split(":")
method and you will get the hours
and minutes
values directly.
Then just test if their values are lower than 10
add a leading 0
and if the hours
is higher than 12
use pm
suffix or use am
otherwise.
This is a live DEMO using onchange event of the time input with its value as parameter onchange="ampm(this.value)
:
function ampm(time) {
console.log(time);
if (time.value !== "") {
var hours = time.split(":")[0];
var minutes = time.split(":")[1];
var suffix = hours >= 12 ? "pm" : "am";
hours = hours % 12 || 12;
hours = hours < 10 ? "0" + hours : hours;
var displayTime = hours + ":" + minutes + " " + suffix;
document.getElementById("display_time").innerHTML = displayTime;
}
}
<!--This is the input field where a user selects a time-->
<input id="time" placeholder="Time" type="time" name="time" onchange="ampm(this.value)" />
<span id="display_time"></span>
Something like this will do it
function showTime() {
//Grab the time and split into hrs and mins
var time = document.getElementById("time");
if ( time.value === "") {
document.getElementById("mySpan").innerHTML = "";
return false;
}
var hrs = time.value.split(":")[0];
var mins = time.value.split(":")[1];
var newTime = ampm(hrs, mins);
document.getElementById("mySpan").innerHTML = newTime;
}
function ampm(hrs, mins) {
return ( hrs % 12 || 12 ) + ":" + mins + (( hrs >= 12 ) ? "PM" : "AM" );
}
Here is a an example. showTime()
just needs to be ran onchange of the time input.
本文标签: javascriptHow do I pass the value of an input type time to a Date objectStack Overflow
版权声明:本文标题:javascript - How do I pass the value of an input type time to a Date object? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743654194a2516840.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论