我的 .cs 页面中有一个 webMethod,它返回一个列表。
这会像这样返回json..
{
"d": [
"Saint Clair",
"Jefferson",
"Shelby",
"Tallapoosa",
"Blount",
"Talladega",
"Marshall",
"Cullman",
"Bibb",
"Walker",
"Chilton",
"Coosa",
"Clay",
"Tuscaloosa",
"Hale",
"Pickens",
"Greene",
"Sumter",
"Winston"
]
}
我的 jaquery 方法是
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: StrUrl,
data: "{'StateId':'" + Stateid + "'}",
async: false,
success: function (response) {
var obj = jQuery.parseJSON(response);
alert(obj.d[0]);
}
})
我想在 Jquery 中遍历这个 json 数据并获取 json 数据中的所有值。