URL 编解码工具
encodeURI 不会编码 : / ? # [ ] @ ! $ & ' ( ) * + , ; = 等URL保留字符,适合编码完整URL; encodeURIComponent 会编码所有特殊字符,适合编码URL参数值。