encodeURIComponent的重新學習
encodeURIComponent將所有的非字母數字的字符轉換為瀏覽器可理解的UTF-8編碼。
跟她對應的是encodeURI,一個是將URI轉換一部分,一個是全部轉換
示例:
鏈接:http://www.wrox.com/illegal value.htm#start
encodeURIComponent結果:http%3A%2F%2Fwww.wrox.com%2Fillegal%20value.htm%23start
encodeURI的結果:http://www.wrox.com/illegal%20value.htm#start
與上面兩個對應的是decodeURI和decodeURIComponent,不多做贅述。