谁能告诉我为什么它对我不起作用?
实际问题:在日期选择器中浏览日期时,如果未进行选择,则必须选择默认日期。
我在 Jquery Datepicker 中手动完成,但在 YII 中使用 Zii Widget 我没有得到。
$this->datePickerOptions = array(
'showAnim' => 'fold',
'dateFormat'=>'dd M yy',
'changeMonth' => 'true',`enter code here`
'changeYear'=>'true',
'constrainInput' => 'false',
'firstDay' => 1,
'onChangeMonthYear' => 'js:function (year, MM, inst) {
var selectedDate = new Date();
_currentDay=this.value.toString().substr(0,2);
selectedDate = Date.parse(MM + "" + _currentDay + " " + year );
this.value=selectedDate.toString("dd MMM yyyy");
}'