标签:浏览器 中文参数 解决方案 位置 col console one color 方法
找了很多方法,发现就这个方法简单、直接、方便,直接推荐哦!
在汉字的位置加个保护措施:encodeURIComponent(parentid)
举个栗子>>>
$.ajax({
url: ‘url‘+ encodeURIComponent("中文参数值"),
type: ‘GET‘,
dataType: ‘JSON‘,
timeout: 5000,
error: function() { alert(‘error msg‘); },
success: function(resp) {
console.log(resp);
}
});
标签:浏览器 中文参数 解决方案 位置 col console one color 方法
原文地址:https://www.cnblogs.com/gzh529/p/9871969.html