浏览模式: 普通 | 列表
11月, 2015 | 1
p.s. 发现提交的编码都是 utf-8 ,指定为gb2312无用,在gbk网页中,也只能对中文先编码后解码了

使用scriptCharset即可解决问题,用contentType就不一定可以了。

$.ajax({
             url: testUrl,
             dataType: 'jsonp',
             type: 'post',
             scriptCharset: 'utf-8'
         });


上面的解决方案是最完美的,另外也附上网上的解决方式吧,是用contentType来处理的
jQuery(form).ajaxSubmit({
url: "ajax.aspx?a=memberlogin",
type: "post",
dataType: "json",
contentType: "application/x-www-form-urlencoded; charset=utf-8",
...

阅读全文…
1