js日期

ZHOU_VIP發表於2018-10-07
function initdatePicker(){
    $('#gprs_rpt_topn_bt').datepicker({
        autoclose: true,
        format: 'yyyy-mm-dd'
      });    
    $('#gprs_rpt_topn_et').datepicker({
        autoclose: true,
        format: 'yyyy-mm-dd'
      });
    var curDate = new Date();
    $('#gprs_rpt_topn_et').val(curDate.format("yyyy-MM-dd"));    
    var curTs = curDate.getTime();
    curDate.setTime(curTs - 7*24*3600*1000);
    $('#gprs_rpt_topn_bt').val(curDate.format("yyyy-MM-dd"));	
}

 

相關文章