gpt4 book ai didi

jquery - 使用 jQuery 从日期/时间字符串中删除时间

转载 作者:行者123 更新时间:2023-12-01 02:00:46 26 4
gpt4 key购买 nike

使用 jQuery 从返回的数据集中去除时间的有效方法是什么?由于排序目的,我需要时间存在于数据库中,但我只需要显示日期。

<adopt_date>Apr 25 2013 2:41PM</adopt_date>是我的 Web 服务的结果示例。

以下是我目前如何使用这些信息(如果有帮助的话):

var adopted_date = $(this).find('adopt_date').text();

其中 $(this) 是数据集。

谢谢!

最佳答案

试试这个:

$("adopt_date").html(function (index, value) {
return value.replace(/\d{1,2}:\d{2}(AM|PM)/ig, '');
});

FIDDLE

关于jquery - 使用 jQuery 从日期/时间字符串中删除时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16243244/

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