jquery ajax请求简单实例
Posted 一个奋斗中的小菜鸟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery ajax请求简单实例相关的知识,希望对你有一定的参考价值。
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请求简单实例的主要内容,如果未能解决你的问题,请参考以下文章