ajax调用服务器页面时,输出内容的编码格式不同导致乱码,一般默认的为utf-8,输出出现中文乱码,写上输出格式即可
以下为格式内容:
php:header('content-type:text/html;charset=gb2312');
asp:response.charset = gb2312
jsp:response.setheader(charset,gb2312);