如何以 jquery.timeago 格式显示过去 24 小时的日期,否则显示短月份名称
问题说明了我的全部想法。我对js不太擅长,已经尝试了一段时间了。谢谢。
question says it all i think. i'm not that great with js, been trying for a while. thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
新答案
看来我在之前回答时可能误解了 jQuery 插件的功能。在我看来,获得所需功能的最佳方法是修改 jQuery 插件。修改插件并不是一项简单的任务,但如果您确实需要上述功能,那么它可能是值得的。
旧答案
字符串
如果在当前 24 小时内,
。在 JavaScript 中,使用正则表达式检查返回的字符串是否在 24 小时内,如果不是,则使用日期对象获取月份。
示例正则表达式测试:
示例测试:
示例控制台输出:
这应该足以让您朝着正确的方向前进。
New Answer
It appears that I may have misunderstood the functionality of the jQuery plugin when previously answering. It appears to me, that the best way to get the functionality you want will be to modify the jQuery plugin. Modifying the plugin won't be a simple task but if you really need said functionality it may be worth it.
Old Answer
The strings returned from the jQuery.timeago plugin will always return a string containing
if it is within the current 24 hour period.
In JavaScript, check the returned string with a regex to see if it is within 24 hours and if it isn't, use the date object to get the month.
Example regex test:
Example test:
Example console output:
This should be enough to get you headed in the right direction.