开发者

Jquery Datepicker selected date to Next week or two week

开发者 https://www.devze.com 2023-03-18 09:56 出处:网络
I wanted to make the Jquery Datepicker selected date to be the next week from current date, I tried it , but did not got luck. And also about the time picker I wanted to be something selec开发者_如何学

I wanted to make the Jquery Datepicker selected date to be the next week from current date, I tried it , but did not got luck. And also about the time picker I wanted to be something selec开发者_如何学编程ted like 10:00Am. Thank you in advance for help.


I still don't get the specifics about the selectedDate inside your datepicker and I prefer using a diferent time of timepicker.
The Timepicker plugin & demo: Adding a Timepicker to jQuery UI Datepicker

If you use this, you can easily achieve all your requirements like this.

$(".datepicker").datetimepicker({
    defaultDate: '+7d',
    ampm: true,
    hour: 10,
    minute: 30
});

Demo: jsFiddle with working example.

0

精彩评论

暂无评论...
验证码 换一张
取 消