URL
对URL中的中文进行转义
encodeURI
和decodeURI
,decodeURIComponent
和encodeURIComponent
url = "https://www.baidu.com/s?wd=%E4%B8%AD%E6%96%87"
"https://www.baidu.com/s?wd=%E4%B8%AD%E6%96%87"
z_url = decodeURI(url)
"https://www.baidu.com/s?wd=中文"
encodeURI(z_url)
"https://www.baidu.com/s?wd=%E4%B8%AD%E6%96%87"
总结:上面的方法常在URL中有中文时会用到。
网友评论