当前位置 : 主页 > 网络编程 > JavaScript >

js jQuery Ajax

来源:互联网 收集:自由互联 发布时间:2021-06-28
AJAX.js $(function () { var today = new Date(); var submitTime = today.getFullYear() + '年' + (today.getMonth() + 1) + '月' + today.getDate() + '日 ' + today.getHours() + '时' + today.getMinutes()+ '分'; $("#date").attr('value', submit
AJAX.js
$(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);
        }
    });


});
上一篇:验证码倒计时js
下一篇:judgeScroll.js
网友评论