博主首页

ajax

        $.ajax({
            url: "http://192.168.0.59:8081/t1/count", // 要发送请求的URL
            type: "GET", // 请求类型(默认为GET)
            dataType: "json", // 服务器返回的数据格式(默认为智能判断)
            data: {}, // 传递到服务器的参数
            success: function(data) { // 请求成功时的处理函数
                console.log("请求成功");
                $("#t1").text(data.t1);
                $("#t2").text(data.t2);
            },
            error: function() { // 请求失败时的处理函数
                console.log("请求失败");
            }
        });

 

posted @ 2024-02-19 15:14  笑~笑  阅读(5)  评论(0编辑  收藏  举报