将波斯 (Jalali) 日历转换为表单字段条目上的时间戳
我在 Confluence 中使用 Confiforms 制作了一个表单,其中包括波斯日历字段。有一个过滤器控制宏来过滤记录。但此过滤器不适用于波斯日期。因为波斯日期保存为时间戳,但波斯日历字段显示日期,而不是时间戳,当我想过滤记录时,我应该在波斯日历字段中写入时间戳以使过滤器起作用。
问题是我希望当我选择一个日期时,它会将其时间戳返回给字段而不是日期。 (见图)
是否有任何 JavaScript/jQuery 代码可以将字段的波斯日期条目转换为时间戳?
编辑: 字段输入的 shamsi 日期格式为 dm-yy(例如 15-12-1400)
I made a form with Confiforms in Confluence including a Persian calendar field. There is a Filter Control macro to filter the records. But this filter doesn't work fine with Persian dates. Because Persian dates are saved as timestamp but the Persian calendar field displays the date, not the timestamp, and when I want to filter records, I should write timestamp in the Persian calendar field to make filter work.
The problem is I want that when I choose a date, it returned its timestamp to the field instead of date. (See the picture)
Is there any JavaScript/jQuery code to convert a Persian date entry of a field to timestamp?
Edit:
The shamsi date format of field entry is d-m-yy (eg. 15-12-1400)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下函数将把波斯 (Jalali) 日期转换为时间戳(基于 UTC)。
您将 Jalali 的年、月和日传递给函数,输出是 UTC 区域中的时间戳。
The following function will convert a Persian (Jalali) Date to a Timestamp (UTC based).
You pass the Jalali's year, month, and day to the function and the output is the timestamp in the UTC zone.