比如$.post("text.html",data,function());中我知道回调返回数据所用的能不能细说一下。
1 回答
素胚勾勒不出你
TA贡献1827条经验 获得超9个赞
函数处理返回来的数据,比如以下代码是把返回的数据添加到列表中
$.ajax(
{
type: "get",
datatype: "json",
url: encodeURI("test.ashx?name=" + $("#<%=TextBox1.ClientID %>").val()),
beforeSend: function() { $("#panel").html("正在载入..."); },
success: function(data) { var data1 = eval('' + data + ''); $("#panel").html(""); $.each(data1, function(i) { $("#panel").append("<li>name:" + data1[i].name + " " + "age:" + data1[i].age + "</li>"); }) },
// success:function(data){$("#panel").html(data);},
complete: function() { alert("载入完成"); }
}
)
- 1 回答
- 0 关注
- 568 浏览
添加回答
举报
0/150
提交
取消