Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用表单来添加和编辑用户,其中一个特定字段用于添加日期时间并且我正在使用jquery UI datepicker(添加了时间选择器),问题是,因为我在编辑时使用相同的表单来添加和编辑来了,当我单击该字段并且日期选择器将值更改为今天的日期时,该字段中获取的日期时间值会发生变化,我可以将日期选择器的日期和时间设置为与获取的值对应的值吗?我希望你了解情况!
jquery UI datepicker
您可以在 datepicker 中设置日期,如下所示
target.datepicker('setDate', "你约会")
其中 target 是 datepicker 字段的句柄,日期集的格式应与为日期选择器配置的格式相同。
当我设置时间选择器指定的默认日期时间格式时,它工作了问题解决了