日期元件初始化

ZHOU_VIP發表於2019-04-12

不帶時分秒,jsp中引入:

<!-- bootstrap time picker -->

<script src="<%=path%>/plugins/timepicker/bootstrap-timepicker.min.js"></script>

帶時分秒,jsp中引入:

<!-- bootstrap time picker -->

<script src="<%=path%>/plugins/datetimepicker/bootstrap-datetimepicker.min.js"></script>


/**
 * 日期元件初始化.
 * 
 * @returns
 */
function initdatePicker(){
    //不帶時分秒
    /*$('#dev_form_postingdate').datepicker({
        autoclose: true,
        format: 'yyyy-mm-dd'
      });*/

    //帶時分秒
    $('#dev_form_postingdate').datetimepicker({
        autoclose: true,
        format: 'yyyy-mm-dd hh:ii:ss'
     });
}
/**
 * 日期元件初始化.
 * 
 * @returns
 */
function initdatePicker(){
    //查詢裡面的日期初始化
    $('#dev_lc_qrybt').datepicker({
        autoclose: true,
        format: 'yyyy-mm-dd'
    });    
    $('#dev_lc_qryet').datepicker({
        autoclose: true,
        format: 'yyyy-mm-dd'
    });
    //詳情裡面的日期初始化
    $('#dev_form_contractdate').datetimepicker({
        autoclose: true,
        format: 'yyyy-mm-dd hh:ii:ss'
    });
   
}
/**
 * 日期元件初始化.
 * 
 * @returns
 */
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"));	
}
/**
 * 日期元件初始化.
 * 
 * @returns
 */
function initdatePicker(){
    $('#appm_md_begtime').datetimepicker({
        autoclose: true,
        format: 'yyyy-mm-dd hh:ii:ss'
      });    
    $('#appm_md_endtime').datetimepicker({
        autoclose: true,
        format: 'yyyy-mm-dd hh:ii:ss'
      });
    var curDate = new Date();
    var curTs = curDate.getTime();
    curDate.setTime(curTs + 1*3600*1000);
    $('#appm_md_endtime').val(curDate.format("yyyy-MM-dd hh:mm:ss"));    
    var curTs = curDate.getTime();
    curDate.setTime(curTs - 3*24*3600*1000);
    $('#appm_md_begtime').val(curDate.format("yyyy-MM-dd hh:mm:ss"));	
}
function init_datetime(){
	// 初始化日期
	$('#dev_vertask_starttime').datetimepicker({
		autoclose:"true",
		format:"yyyy-mm-dd hh:ii:ss",      //格式化日期
	});

}

function init_datetime_data(){
	//初始化時間
	var currenttimestamp = new Date().getTime();//當前的時間戳
        var starttimestamp = currenttimestamp + 2 * 60 * 60 * 1000; //預設當前時間晚2個小時
	var starttime = new Date(starttimestamp);
	$('#dev_vertask_starttime').val(starttime.format("yyyy-MM-dd hh:mm:ss"));
}

 

相關文章