我想顯示格式日期時間2017年3月3日7時30分00秒牛逼顯示日期時間在PHP
這是我的腳本
<script>
$(document).ready(function() {
var from = "";
$('#loadings').show();
$.ajax({
type: "GET",
url: 'http://apis.fdf.df/api/Get_Loadsheet_Details/<?php
echo $number; ?>',
dataType: 'json',
success: function (response) {
$('#loadings').hide();
console.log(response);
document.getElementById('ldate').innerHTML =
response[0].DATE;
}, error: function (errors) {
console.log(errors);//alert('hi');
$('#loadings').hide();
$('#error').html("<h2><span style='color:red;'>No data
found on this LR No.</span></h2>");
}
});
});
</script>
我api的控制檯輸出是
[{"DATE":"2017-04-03T00:00:00","lrConfirmStatus":null,"lrLoadStatus":null}]
我想它ID爲「ldate」綁定到外地
<tr>
<td>LOAD DATE:</td>
<td id="ldate"> </td>
</tr>
我不明白。你的fdf.df'服務器是你的嗎?您無法使用服務器端技術更改客戶端請求的響應。 –
你想用PHP或JavaScript來格式化日期時間嗎? –