List数组最好换为json的,$.post("action路径",function(data返回的数据){
你最好弹一下,看是不是你要的数据
eval("var mydata="+data);
再用each循环就好
});
$.ajax({
type: "post",
url : "/manager/mobileSet.do?method=replaceCss",
dataType:'json',
data:'colorType='+color,
success: function(result){
alert(result); //这里我想接收到action里边的字符串,怎么写 ?
}
});
后台java代码:
String result = “xxxxxxxxxxxxxxx”;
PrintWriter out = this.servletResponse.getWriter();
out.write(result);
没有返回list 数据的...只能是xml 或者json.然后在前台解析