标签:字符 esc component 添加 turn bsp 匹配 log function
java encode ! 会编码 %21 如果用的是js的 encode 是保留了! 在进行比对的时候会出现问题
可以这样添加添加一下
function fixedEncodeURIComponent (str) { return encodeURIComponent(str).replace(/[!‘()*]/g, escape); } fixedEncodeURIComponent("‘@#$%^&");
Javascript encodeURIComponent 匹配 java encode 特殊字符
标签:字符 esc component 添加 turn bsp 匹配 log function
原文地址:http://www.cnblogs.com/minwei/p/6270192.html