日期时间选择器 - 设置打开日期和时间
我正在使用这个漂亮的小日期和时间选择器 [ http://trentrichardson.com/examples/timepicker/]。如何设置选择器打开的日期和时间?
I'm using this nifty little date and time picker [ http://trentrichardson.com/examples/timepicker/ ]. How can I set the date and time for when the picker opens?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果您在表单上使用它,请从隐藏输入中设置它。
HTML 表单:
If you're using this on a form, set it from a hidden input.
HTML Form:
您可以将
Date
对象传递给setDate
方法。查看实际操作:http://jsfiddle.net/william/Rkewu/1/。
You could pass a
Date
object to thesetDate
method.See it in action: http://jsfiddle.net/william/Rkewu/1/.
尝试在
input
元素内设置value
属性,如下所示:Try setting the
value
attribute inside theinput
element like this:只要集中注意力就可以了。
Just focus it.