在日期控件中提取日期数据,并在另一个文本框中显示其年份加1 |
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在日期控件中提取日期数据,并在另一个文本框中显示其年份加1 |相关的知识,希望对你有一定的参考价值。
<td class="back">启用日期:
<input id="vc_fdate" name="vc_fdate" type="text" class="easyui-datebox form-control" value=""/>
截止日期:
<input id="vc_tdate" name="vc_tdate" type="text" class="easyui-datebox form-control" value="" readonly/>
</td> $Dialog().date($(‘#vc_fdate‘),function(){
var fdate = $("#vc_fdate").val();
var _tdate = addDate(fdate,‘365‘);
var tdate = _tdate.getFullYear()+"-"+(_tdate.getMonth()+1)+"-"+_tdate.getDate();
$("#vc_tdate").val(tdate);
});
});
function addDate(vc_tdate,vc_fdate){
var a = new Date(vc_tdate);
a = a.valueOf();
a = a + vc_fdate * 24 * 60 * 60 * 1000;
a = new Date(a);
return a;
} 以上是关于在日期控件中提取日期数据,并在另一个文本框中显示其年份加1 |的主要内容,如果未能解决你的问题,请参考以下文章