-2
にAJAXの成功関数から計算された日付の値を渡すことができますこれは、渡された値受け取るために私の入力です:はどのように私は入力タイプテキスト
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
を返します。
は$( '#inputMonthsDue')datetimepickerフィールドですか? – Ripun
データには何が入っていますか? – nerdlyist
–