gpt4 book ai didi

javascript - 如何将当前小时数与小时字符串 JavaScript 进行比较

转载 作者:行者123 更新时间:2023-12-02 22:50:33 27 4
gpt4 key购买 nike

我在 JavaScript 中有属性字符串 Time:"10:50"响应。如何仅比较字符串的小时与系统的小时。例如:如果 10=10 则在函数中运行代码。请帮忙。谢谢

最佳答案

您应该将字符串包装到日期对象中,并对日期对象使用 getHours() 函数。类似的东西

//in the oldDate, pass the string as params to the date constructor
let oldDate = new Date("date string")
//construct this one without a parameter and it will use the system time
let systemDate = new Date()

if(oldDate.getHours() == systemDate.getHours())

但是,如果您非常确定响应的形式为“10:50”,那么这将是更好的选择

let time = "10:50"
let h = parseInt(time.split(":")[0])

let systemDate = new Date()
if(h == systemDate.getHours())

关于javascript - 如何将当前小时数与小时字符串 JavaScript 进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58195054/

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