escape,encodeURI,encodeURIComponent

escape,encodeURI,encodeURIComponent这三个方法都是对URL进行编码的。

escape这个方法在ECMAScript v3中废弃,因此不要使用。

encodeURIComponentencodeURI相比,会对更多的符号进行编码。包括=&。如图所示

escape,encodeURI,encodeURIComponent_第1张图片
difference.png

生成该结果的的代码如下

var arr = [];
for(var i=0;i<256;i++) {
  var char=String.fromCharCode(i);
  if(encodeURI(char)!==encodeURIComponent(char)) {
    arr.push({
      character:char,
      encodeURI:encodeURI(char),
      encodeURIComponent:encodeURIComponent(char)
    });
  }
}
console.table(arr);

因此,当要对整个URL进行编码时,使用encodeURI
编码参数用encodeURIComponent。如下所示:

//对整个URL进行编码
encodeURI('http://xyz.com/?a=12&b=55'); 
// 编码参数
'http://xyz.com/?a=' + encodeURIComponent('酷&炫');

你可能感兴趣的:(escape,encodeURI,encodeURIComponent)