encodeURIComponent与encodeURI的区别

encodeURIComponent()   -->把字符串编码为 URI 组件。

encodeURI()                   -->把字符串编码为 URI。

var test1 = "a + b != c";
var test2 = encodeURIComponent(test1); // a%20%2B%20b%20!%3D%20c
var test3 = encodeURI(test1); // a%20+%20b%20!=%20c

来自:http://www.w3school.com.cn/jsref/jsref_obj_global.asp

上一篇:java中的volatile和synchronized


下一篇:利用Python写一个抽奖程序,解密游戏内抽奖的秘密