js中同步与异步请求方式
Posted 蚂蚁1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中同步与异步请求方式相关的知识,希望对你有一定的参考价值。
异步请求方式:
$.ajax({
url : ‘your url‘,
data:{name:value},
cache : false,
async : true,
type : "POST",
dataType : ‘json/xml/html‘,
success : function (result){
do something....
}
});
同步请求方式:
$.ajax({
url : ‘your url‘,
data:{name:value},
cache : false,
async : false,
type : "POST",
dataType : ‘json/xml/html‘,
success : function (result){
do something....
}
});
以上是关于js中同步与异步请求方式的主要内容,如果未能解决你的问题,请参考以下文章