1. 程式人生 > >easyUI設定dateBox的預設值為當前時間

easyUI設定dateBox的預設值為當前時間

function formatterDate(date) {
        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;
    };

我們需要在頁面載入完成之後進行一些操作

$(function(){
 $('#input_dateTransaction').datebox('setValue', formatterDate(new Date()));
})

這樣就可以實現了,網上說的直接設定getDate()的方法是不可行的,因為這樣出現的結果會是NAN/NAN/NAN