js url编码解码函数 decodeURIComponent encodeURIComponent

decodeuricomponent() 函数可对 encodeuricomponent() 函数编码的 URL进行解码。


例子:

var test1="http://www.111cn.net/my first/"

document.write(encodeuricomponent(test1)+ "<br />")

结果

http%3a%2f%2fwww.111cn.net%2fmy%20first%2f

encodeuricomponent(urlstring)函数 解码函数

猜你喜欢

转载自blog.csdn.net/zxz_1991/article/details/46879295