有没有 JavaScript 方法来设置这个 jQuery timepicker 插件的时间?
我想将当前日期/时间设置为根据此 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您提供的链接中,它向您展示了如何指定时间:
一种快速方法是在 HTML 标记中设置文本框的值,例如
或者可以使用 JQuery 完成:
In the link you provided, it shows you how to specify the time:
A quick way would be to set the value of the text box within the HTML markup, e.g.
Or it could be done with JQuery:
用于
设置控件的当前日期和时间。
Use
to set the control with current date and time.