jquery 看起来像这样
$.post('JSP/processForm.jsp', $("#Form").serialize(),
function(data){
//I want to iterate through every line in the data object returned here.
});
我搜索并尝试了:
$.each($(data), function(key, value) {
alert(value);
});
但这没有用。我知道响应需要首先编码到一个 jQuery 对象中。
$(data)
但我似乎无法找到一种方法来遍历每一行。jsp代码很简单:
out.println("Test");
out.println("Test Email");
out.println("Test CellPhone");
out.println("305-777-5587");