escape, encodeURI, encodeURIComponent的区别

首先从定义上区分一下(注意粗体字部分)

escape()除了 ASCII 字母、数字和特定的符号外,对传进来的字符串全部进行转义编码,因此如果想对URL编码,最好不要使用此方法。对应unescape。

encodeURI() 用于编码整个URI,因为URI中的合法字符(包括特殊字符,英文半角标点符号)都不会被编码转换。对应decodeURI。

encodeURIComponent方法在编码单个URIComponent(指请求参数)应当是最常用的,可以将参数中的中文、特殊字符进行转义,而不会影响整个URL。对应decodeURIComponent。

encodeURIComponent() 函数 与 encodeURI() 函数的区别之处,前者假定它的参数是 URI 的一部分(比如协议、主机名、路径或查询字符串)。因此 encodeURIComponent() 函数将转义用于分隔 URI 各个部分的标点符号。

 

然后你点击下面的链接自己验证一下上面的定义,一下子就明白了。

https://www.runoob.com/try/try.php?filename=tryjsref_encodeuricomponent

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>

<script>
    var uri="中文Fitabc:';'/.";
    var escape = escape(uri);
    document.write("==="+escape + "<br>");
    document.write("==="+unescape(escape) + "<br>");
	
    var encodeURI=encodeURI(uri);	
    document.write("==="+encodeURI + "<br>");
    document.write("==="+decodeURI(encodeURI) + "<br>");
	
    var encodeURIComponentURI = encodeURIComponent(uri);
    document.write("==="+encodeURIComponentURI + "<br>");
    document.write("==="+decodeURIComponent(encodeURIComponentURI) + "<br>");
</script>

</body>
</html>

输出结果如下:

===%u4E2D%u6587%uFF26%uFF49%uFF54abc%3A%27%3B%27/.
===中文Fitabc:';'/.
===%E4%B8%AD%E6%96%87%EF%BC%A6%EF%BD%89%EF%BD%94abc:';'/.
===中文Fitabc:';'/.
===%E4%B8%AD%E6%96%87%EF%BC%A6%EF%BD%89%EF%BD%94abc%3A'%3B'%2F.
===中文Fitabc:';'/.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值