这是我接收传递值的输入类型:
success:function(data){
$('#inputMonthsDue').val("<?php $effectiveDate = strtotime('+"+data[15]+" months', strtotime(date('Y-m-d'))); echo date('Y-m-d',$effectiveDate) ?>");
$('#inputContractDue').val("<?php $effectiveDate = strtotime('+"+data[16]+" months', strtotime(date('Y-m-d'))); echo date('Y-m-d',$effectiveDate) ?>");
}
<input type='text' class='form-control' id="inputMonthsDue" readonly>
我将此代码传递给输入类型文本,但它返回1970-01-01
。
答案 0 :(得分:1)
确定
我在我的Php代码中使用了这个,然后返回到具有日期值的成功函数。谢谢你帮助^^
$arr[17] = date('Y-m-d', strtotime($oldDate. " + {$arr[15]} months"));