Jquery日期时间选择器问题

发布于 2024-11-19 19:17:29 字数 235 浏览 3 评论 0原文

$('#id').datetimepicker({
    dateFormat: 'mm/dd/yyyy hh:mm:ss' 
});

datetimepicker() jQuery 在 Firefox 中无法正常工作。

每当我尝试更改日期的值时,它都会增加 100 年至今。

这段代码在 IE 中运行良好。

请建议解决此问题。

$('#id').datetimepicker({
    dateFormat: 'mm/dd/yyyy hh:mm:ss' 
});

datetimepicker() jQuery is not working properly in Firefox.

Whenever I try to change the value of date then it adds 100 years to date.

This code is working fine in IE.

Please suggest solution to this problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

卷耳 2024-11-26 19:17:29

您能否提供有关 datetimepicker.js 文件的详细信息。你用的是哪个JS?

我正在使用

http://www.projectcodegen.com/jquery.ui.datetimepicker。 min.js

及其工作正常

$(function() {
        $('#id').datetimepicker({
            dateFormat: 'mm/dd/yyyy hh:MM:ss TT'
        });
    });

Can you please give details regarding JS file for datetimepicker. Which JS are you using?

I am using

http://www.projectcodegen.com/jquery.ui.datetimepicker.min.js

and its working fine with

$(function() {
        $('#id').datetimepicker({
            dateFormat: 'mm/dd/yyyy hh:MM:ss TT'
        });
    });
空城旧梦 2024-11-26 19:17:29

您必须向我们提供您正在使用的 js 文件。
什么时候调用这个函数?
身体>加载事件?
检查 Dom 是否准备好。
告诉我们当 dom 准备好时会出现什么异常。

You must give us what js file you are using.
When you call this function?
body > onload event?
Check if the Dom is ready.
Give us what exception appears when dom is ready.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文