gpt4 book ai didi

javascript - 比较两个时间值 (hh :mm am/pm)

转载 作者:行者123 更新时间:2023-11-28 11:10:11 24 4
gpt4 key购买 nike

我有两个从下拉框中选择的时间值。时间格式为hh:mm am/pm。我需要比较两个日期。我已经完成了这段代码,但它对我不起作用。

<select id="eventstarttime">
<option>10:00am</option>
........
<option>3:00pm</option>
</select>

<select id="eventstoptime" onblur="return checktime()">
<option>10:00am</option>
........
<option>3:00pm</option>
</select>

JavaScript方法是

 function checktime()
{
var start = document.getElementById("eventstarttime").value;
var end = document.getElementById("eventstoptime").value;


if(Date.parse('01/01/2011 '+end) < Date.parse('01/01/2011 '+start))
{
alert("End time should exceed the start time");
}
else if(Date.parse('01/01/2011 '+end) -Date.parse('01/01/2011 '+start)==0)
{
alert("Start time and end time cannot be same");
}
return false;
}

最佳答案

如果将 24 小时时间 value 属性添加到 option 元素,例如

<select id="eventstarttime">
<option value="1000">10:00am</option>
<option value="1215">12:15pm</option>
<option value="1500">3:00pm</option>
</select>

<select id="eventstoptime" onblur="return checktime()">
<option value="1000">10:00am</option>
<option value="1215">12:15pm</option>
<option value="1500">3:00pm</option>
</select>

您可以使用轻松比较它们

function checktime()
{
var start = document.getElementById("eventstarttime").value;
var end = document.getElementById("eventstoptime").value;

if (end < start)
{
alert("End time should exceed the start time");
}
else if (end == start)
{
alert("Start time and end time cannot be same");
}
return false;
}

不需要 JavaScript Date 方法。

关于javascript - 比较两个时间值 (hh :mm am/pm),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15270614/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com