Jquery datetimepicker - 将时间提前 1 小时
我目前正在使用 此处 的 jQuery datetimepicker 插件,
它工作得非常完美,但我'我对如何向其添加一点功能感到困惑。我目前在页面上有两个实例,一个用于开始时间,一个用于结束时间。当我选择开始时间时,我想自动填写结束时间(开始时间 + 1 小时)。
这可以在不扩展核心脚本的情况下完成吗?
I'm currently using the jQuery datetimepicker add-on from here
It works just about perfectly, but I'm stumped on how to add a small bit of functionality to it. I currently have two instances on a page, one for start-time and one for end-time. When I choose a start-time, I'd like to automatically fill in the end-time with the start time + 1 hour.
Can this be accomplished without extending the core script at all?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,它扩展了 JQuery-UI Datepicker,它具有不同的回调来处理选择,
您可以查看 onSelect 文档 并在您的时间选择器上使用它
yes, it extends the JQuery-UI Datepicker which has different callbacks to handle a selection
you can check out the onSelect documentation and use it on your timepicker
以下代码将为结束时间日期选择器添加一小时。
The following will add one hour to the end-time datepicker.
页面底部附近显示了“获取和设置日期时间”函数。
你能用那个吗?或者当然你必须在 getDate 中添加一个小时。
There is a Get and Set Datetime function shown near the bottom of the page.
Could you use that? Or course you'll have to add an hour to the getDate.