gpt4 book ai didi

javascript - 比较时间戳

转载 作者:行者123 更新时间:2023-11-28 20:35:19 25 4
gpt4 key购买 nike

如果两个时间戳均为 mysql 2013-03-21 18:16:50 格式,此代码是否有效?

$.get('current.php', { lastTime: time, current: true, Cla: Class }, function(html) {
var Date1 = Date.parse($(html).find("#timestamp").val());
var Date2 = Date.parse($("#timestamp").val());
if (Date.parse(Date1) < Date.parse(Date2)) {$(html).find("#timestamp").remove();}else {$("#timestamp").remove();}
}

最佳答案

我想你想要这样的东西:

$.get('current.php', { lastTime: time, current: true, Cla: Class }, function(html) {
var $dateInput1 = $(html).find('#timestamp'),
$dateInput2 = $("#timestamp");
if ($dateInput1.val() < $dateInput1.val()) {
$dateInput1.remove();
} else {
$dateInput2.remove();
}
// ... add $html somewhere to the DOM ...
});

由于您的日期已经采用了词汇上可比较的格式,因此根本不需要使用 Date.parse() 。另外,您只需为每个元素创建一个 jQuery 对象,因此这种方式也更高效。

关于javascript - 比较时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15557348/

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