JavaScript全局函数使用简单说明
1、decodeURI() 参数:string 功能描述:对 encodeURI() 函数编码过的 URI 进行解码。 实例: 可把 //www.jb51.net/My first/ 解码为 //www.jb51.net/My first/ 2、decodeURIComponent() 参数:string 功能描述:函数可对 encodeURIComponent() 函数编码的 URI 进行解码。 3、encodeURI() 参数:string 功能描述:可把字符串作为 URI 进行编码。 提示:如果 URI 组件中含有分隔符,比如 ? 和 #,则应当使用 encodeURICompone
用户评论