• jquery的ajax()函数中文传值出现乱码完美解决方案


    1.        jquery的ajax()函数

    1    $.ajax({               
    2                 type: "POST",               
    3                 dataType: "text",   
    4                 url: "../../tools/submit_ajax.ashx?action=check_newstitle&id=" + titleId + "&newstitle=" + encodeURI(encodeURI(obj.value)),                    
    5                success: function (result) { }

    encodeURI两次编码,记住一定是两次,在后台action里要对取得的字符串进行decode

    2.ajax配置contentType属性,加上charset=UTF-8   在ajax方法中加入以下参数   contentType: “application/x-www-form-urlencoded; charset=UTF-8″使用其它js框架或者xhr都是差不多,设置header中contentType即可,   

    这里关键是charset=UTF-8,如果没有这个,是不行的,默认jQuery里的contentType是没有的

  • 相关阅读:
    Angularjs 中文版API v1.3.9 阅读
    jquery之ajax
    requirejs中 shim
    reqiurejs学习
    angularjs与require的集成摘抄
    安装go-admin
    多种GitHub加速方式
    git初始化仓库操作
    git cherry-pick
    gc问题定位
  • 原文地址:https://www.cnblogs.com/yinrq/p/3187211.html
Copyright © 2020-2023  润新知