博客列表 >jq中的ajax示例代码

jq中的ajax示例代码

小生我怕怕啊的博客
小生我怕怕啊的博客原创
2020年10月10日 11:19:08922浏览
                $.ajax({
                    url: 'time.php',
                    type: 'get',
                    beforeSend: function (xhr) {
                        // 在所有发送请求的操作(open, send)之前执行
                        console.log('beforeSend', xhr)
                    },
                    success: function (res) {
                        // 隐藏 loading
                        // 只有请求成功(状态码为200)才会执行这个函数
                        console.log(res)
                    },
                    error: function (xhr) {
                        // 隐藏 loading
                        // 只有请求不正常(状态码不为200)才会执行
                        console.log('error', xhr)
                    },
                    complete: function (xhr) {
                        // 不管是成功还是失败都是完成,都会执行这个 complete 函数
                        console.log('complete', xhr)
                    }
                })


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议