gpt4 book ai didi

javascript - jQuery 或 javascript 可以从文本字符串中确定日期,然后比较两个日期吗?

转载 作者:行者123 更新时间:2023-12-02 18:17:24 25 4
gpt4 key购买 nike

我正在处理这样的 HTML 结构:

<div class="post-info">
<span class="date published time" title="2013-10-01T13:49:12+00:00">October 1st, 2013</span>
<p>Info about person.</p>
<p>Special notice that only displays if the date is September 27th, 2013 or later.</p>
</div>

将跨度的标题放入变量中,我使用 substr() 提取类似“YYYY-MM-DD”的部分。

但是它不是作为文本字符串存在于变量中吗?然后,如何将此文本字符串转换为日期对象,然后将其与 2013-09-27 进行比较,以仅当跨度标题中的日期为 27 日或更新时才执行代码块?

最佳答案

将文本转换为日期对象

var theDateString = '2013-10-01';  // the date you got using the substr() function
if (new Date(theDateString) >= new Date('2013-09-27')) {
// your code to run if the date is greater than or equal to 2013-09-27
}

关于javascript - jQuery 或 javascript 可以从文本字符串中确定日期,然后比较两个日期吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19164100/

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