ajax怎么获得后台传来的数据

2024-12-27 20:22:52
推荐回答(3个)
回答1:

试试xmlHttp.responseText

回答2:

response.getWriter().print(a);

不要ln

回答3:

你的后台方法不能返回整个页面能容,只要返回字符串就好了。

$.ajax({
type: "POST",
url: "../question/videoForm.srq",
data: "video_UserId="+userid+"&questionid="+questionid,
success: function(msg){
var host=window.parent.location.host;
host=host+":8080"+msg.url;
window.open("http://"+host);
}});

整个是我的一个ajax返回一个url