location.href.replace(/%27/g,"'") 这行正则什么意思
1、location.href:当前页面的链接。
2、relace: string的替换方法.
3、“%27”为“'”的url编码,/%27/g正则匹配所有的“'”的url编码结果。
4、location.href.replace(/%27/g,"'")就是将链接中的所有“'”通过url编码后的字符全部还原回去。