Ajax
列:
$.ajax({
url:"http://localhost:2462/Handler.ashx",
type:"get",
dataType:"xml",
success:function(data){
$(data).each(function(idenx){
alert($(this).find("Students").text()) ;
})
}
})
客户端请求一般使用Handler处理.