例
解碼URI編碼後:
var uri = "http://w3ii.com/my test.asp?name=stale&car=saab";
var
uri_enc = encodeURIComponent(uri);
var uri_dec = decodeURIComponent(uri_enc);
var res = uri_enc + "<br>" +
uri_dec;
資源的結果將是:
http%3A%2F%2Fw3ii.com%2Fmy%20test.asp%3Fname%3Dst%C3%A5le%26car%3Dsaab
// Encoded URI
http://w3ii.com/my test.asp?name=stale&car=saab // Decoded URI
試一試» 定義和用法
該decodeURIComponent()函數進行解碼URI組件。
提示:使用encodeURIComponent()函數編碼的URI組件。
瀏覽器支持
功能 | |||||
---|---|---|---|---|---|
decodeURIComponent() | 是 | 是 | 是 | 是 | 是 |
句法
decodeURIComponent( uri )
參數值
Parameter | Description |
---|---|
uri | Required. The URI to be decoded |
技術細節
返回值: | 一個字符串,代表解碼URI |
---|
JavaScript的全局函數