美文网首页
ajax问题

ajax问题

作者: 鸵鸟要抬头 | 来源:发表于2016-12-16 18:12 被阅读0次

    表单传递中文数据发生乱码

    原因:.serialize()自动调用了encodeURIComponent方法将数据编码了

    解决方法:调用decodeURIComponent(XXX,true);将数据解码

    例如:

    var params = jQuery("#formId").serialize(); // http request parameters.

    params = decodeURIComponent(params,true);

    相关文章

      网友评论

          本文标题:ajax问题

          本文链接:https://www.haomeiwen.com/subject/wbanmttx.html