美文网首页
jQuery 中的 ajax

jQuery 中的 ajax

作者: 这世间好折磨人 | 来源:发表于2022-03-22 19:46 被阅读0次

(1)、get 请求

                    $.get(路径  , 参数(对象的形式 ,  储存:键=值    用逗号分割) ,  请求成功后要执行的函数)

(2)、post 请求

                    $.post(路径  , 参数(对象的形式 ,  储存:键=值    用逗号分割) ,  请求成功后要执行的函数)

(3)、ajax 请求

                    $.ajax({

                           type:请求方式,

                            url:请求路径,

                            data:{   参数

                               键 = 值,

                                键 = 值

                            },

                            success:function(data){ 请求成功后要做的事 },

                            error:function(data){ 请求失败后要做的事  }

                    })

相关文章

网友评论

      本文标题:jQuery 中的 ajax

      本文链接:https://www.haomeiwen.com/subject/feyudrtx.html