有没有 JavaScript 方法来设置这个 jQuery timepicker 插件的时间?

发布于 2024-11-07 12:19:33 字数 471 浏览 7 评论 0原文

我想将当前日期/时间设置为根据此 timepicker 插件使用的相同格式自动填充到输入文本框中:

http://trentrichardson.com/examples/timepicker/

该插件假设您希望输入文本字段显示为空白,直到用户与之交互。

$('#example2').datetimepicker({
    ampm: true
});

但我希望输入文本字段已经包含当前日期和时间:

05/16/2011 04:00 am

目前我能想到的唯一方法是使用我的服务器端脚本语言。

但理想情况下应该有一种方法可以使用 JavaScript 或 jQuery 来做到这一点?

I would like to set the current date/time to populate automatically into the input textbox according to the same format used by this timepicker plugin:

http://trentrichardson.com/examples/timepicker/

The plugin assumes that you want the input text field to appear blank until the user interacts with it.

$('#example2').datetimepicker({
    ampm: true
});

But I want the input text field to already contain the current date and time:

05/16/2011 04:00 am

The only way I can see to do this at the moment is using my server-side scripting language.

But ideally there should be a way to do this with JavaScript or jQuery?

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

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

发布评论

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

评论(2

蓝眼泪 2024-11-14 12:19:33

在您提供的链接中,它向您展示了如何指定时间:

$('#example7').datetimepicker({
    hour: 13,
    minute: 15
});

一种快速方法是在 HTML 标记中设置文本框的值,例如

<input type="text" id="example7" value="05/16/2011 04:00" />

或者可以使用 JQuery 完成:

$('#example7').val("05/16/2011 04:00");

In the link you provided, it shows you how to specify the time:

$('#example7').datetimepicker({
    hour: 13,
    minute: 15
});

A quick way would be to set the value of the text box within the HTML markup, e.g.

<input type="text" id="example7" value="05/16/2011 04:00" />

Or it could be done with JQuery:

$('#example7').val("05/16/2011 04:00");
假面具 2024-11-14 12:19:33

用于

$('#yourcontrol').datetimepicker('setDate', new Date());

设置控件的当前日期和时间。

Use

$('#yourcontrol').datetimepicker('setDate', new Date());

to set the control with current date and time.

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