formatterDate = function(date) { //獲取系統當前x年-x月-x日
var day = date.getDate() > 9 ? date.getDate() : "0" + date.getDate();
var month = (date.getMonth() + 1) > 9 ? (date.getMonth() + 1) : "0"
+ (date.getMonth() + 1);
return date.getFullYear() + '-' + month + '-' + day;
};
window.onload = function(){ //input框默認加載系統當前日期
$('#das').datebox('setValue', formatterDate(new Date()));
$('#dae').datebox('setValue', formatterDate(new Date()));
}
複製代碼
* 至: * bash