//test.asp
response.Charset="gb2312"
response.Write("{""teststr"":[{""one"":""第一点"",""two"":""第二点"",""three"":""第三点""},{""one"":""第四点"",""two"":""第五点"",""three"":""第六点""}]}")
js文件
$.ajax({
type: "POST",
url: "test.asp",
dataType: 'json',
data: "web=11",
success:function(msg){
$.each(msg.teststr,function(i){
alert(msg.teststr[i].three);
});
}
});