由于我是新手,因此我很少有与jQuery datepicker及其用法有关的查询。
$("dateId").val(new Date());
$("dateId").datepicker('setDate',newDate());
MM/DD/YYYY
格式的日期。但是有时从日期选择器中选择一些日期时,格式会更改为类似2019年8月23日星期四,而不是08/23/2019。有办法解决这个问题吗?下面的代码段是我用于日期选择器的内容:
<input type="text" id="dateId" placeholder="_/_/__" maxlength="15" onkeyup="func1(this);" onfocus="func2();" onblur="func3();"/>
$noConf("dateId").datepicker({
minDate = x,
maxDate = '+0M +0D +5Y',
changeMonth: true,
changeYear :true,
showOn:'button',
buttonImage:'/someURL',
buttonImageOnly:true,
buttonText:'Test DatePicker'
});