decodeuricomponent() 函数可对 encodeuricomponent() 函数编码的 uri 进行解码。
decodeuricomponent(uristring)参数 描述
uristring 必需。一个字符串,含有编码 uri 组件或其他要解码的文本。
var test1="http://www.111cn.net/my first/"
document.write(encodeuricomponent(test1)+ "<br />")
结果
http%3a%2f%2fwww.111cn.net%2fmy%20first%2f
encodeuricomponent(urlstring)函数 解码函数
uristring 必需。一个字符串,含有编码 uri 组件或其他要解码的文本。
返回值
uristring 的副本,其中的十六进制转义序列将被它们表示的字符替换。
document.write(decodeuricomponent(test1))
值http://www.111cn.net/my first/
时间: 2024-12-25 10:13:43