本文介绍了将昨天设置为Jquery datepicker的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图将昨天的日期设置为 Jquery
datapicker
,如下所示:
I am trying to set yesterdays day to a Jquery
datapicker
as follows:
$(".datepicker").datepicker("setDate", (new Date().getDate() - 1) );
但是,我总是得到今天的约会。该代码位于 $(document).ready
中并且它确实被执行,因为如果我注释掉行abobve,则没有显示任何值。
However, I am always getting todays date. The code is located in $(document).ready
and it does get excuted, cause if I comment out the line abobve, no value shows up.
任何人都可以指出我做错了什么。
Could anyone point out what I am doing wrong.
推荐答案
来自:
$(".datepicker").datepicker("setDate", -1)
这篇关于将昨天设置为Jquery datepicker的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!