博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JQuery AJAX 基本语法
阅读量:5209 次
发布时间:2019-06-14

本文共 391 字,大约阅读时间需要 1 分钟。

 
function
getList()
{
jQuery.ajax({
type:
"
get
"
,
data:{action:
"
query
"
},
url:
"
MobileBindAjax.ashx
"
,
dataType:
"
json
"
,
success:
function
(reslut)
{
jQuery.each(reslut,
function
(i, n) {
//
属性
n.Company
});
},
error:
function
(XmlHttpRequest,textStatus, errorThrown)
{
alert(XmlHttpRequest.responseText);
}
});
}

转载于:https://www.cnblogs.com/zerowang/archive/2011/05/04/2036308.html

你可能感兴趣的文章