ajax与jsp小结
$.ajax({ ... contentType: "application/x-www-form-urlencoded" ... });
?
2,ajax 发给jsp服务端数据乱码
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
?
3.servlet ?返回的数据乱码
response.setContentType("text/html;charset=UTF-8");
?
4.这一点是不懂的。老师的要求是用jsp实现服务端,不是用servlet,我想问下如果用jsp怎么返回给javascript 数据呢?