码迷,mamicode.com
首页 > Web开发 > 详细

jquery ajax请求简单实例

时间:2018-05-04 11:53:26      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:get   UNC   查看   将不   http   单实例   pos   ESS   sch   

jquery ajax 参数讲解网址: 点击查看

        $.ajax({
            type: "post",
            url: "url",
            data: {
                "id": id
            },
            async:true, // 异步请求
            cache:false, // 设置为 false 将不缓存此页面
            dataType: ‘json‘, // 返回对象
            success: function(data) {
                console.log(data);
            },
            error: function(data) {
                // 请求失败函数
                console.log(data);
            }
        })

 

jquery ajax请求简单实例

标签:get   UNC   查看   将不   http   单实例   pos   ESS   sch   

原文地址:https://www.cnblogs.com/yaowan/p/8989474.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!