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