AJAX.js $(function () { var today = new Date(); var submitTime = today.getFullYear() + '年' + (today.getMonth() + 1) + '月' + today.getDate() + '日 ' + today.getHours() + '时' + today.getMinutes()+ '分'; $("#date").attr('value', submit
$(function () { var today = new Date(); var submitTime = today.getFullYear() + '年' + (today.getMonth() + 1) + '月' + today.getDate() + '日 ' + today.getHours() + '时' + today.getMinutes()+ '分'; $("#date").attr('value', submitTime); $.ajax({ type: "post", url: "./static/sghrdxtwh.json", dataType: "json", success: function (data) { $("#projname").attr('value',data.MaintenanceData.header.ProjectName); $("#tech").html(" "+data.MaintenanceData.MaintenanceResult.description); $("#owner").html(" "+data.MaintenanceData.OwnerOpinion.description);//添加 }, error: function (XMLHttpRequest, textStatus, errorThrown) { alert(errorThrown); } }); });