Heim > Fragen und Antworten > Hauptteil
PHP中文网2017-04-10 14:42:09
jQuery有简单方便的$.get
方法、$.post
方法,也有基础复杂的$.ajax
方法。
相关教程:
$.get :http://www.w3school.com.cn/jquery/ajax_get.asp
$.post :http://www.w3school.com.cn/jquery/ajax_post.asp
$.ajax :http://www.w3school.com.cn/jquery/ajax_ajax.asp
题外话
楼主应该百度/谷歌先了解一下,不要不经探索就提问,浪费大家时间。
巴扎黑2017-04-10 14:42:09
默认的ajax请求都是异步啊……
jQuery官方文档上有相关的示例代码。
你也可以看这个:
jQuery - AJAX get() 和 post() 方法
天蓬老师2017-04-10 14:42:09
async:true
$.ajax({
...
async:true, //异步请求(jQuery.ajax 默认为异步请求)
...
})
async:false
$.ajax({
...
async:false, //同步步请求
...
})