JavaScript decodeURI()

admin發表於2019-02-11

decodeURI方法可以解碼經過encodeURI方法編碼過的URI,並返回解碼後的字串。

此方法屬於Global全域性物件,更多內容參閱JavaScript Global 物件一章節。

語法結構:

[JavaScript] 純文字檢視 複製程式碼
decodeURI(URIstring)

引數解析:

URIstring:必需,字串,含有要解碼的URI 或其他要解碼的文字。

程式碼例項:

[JavaScript] 純文字檢視 複製程式碼執行程式碼
let encodeStr=encodeURI("http://www.softwhy.com/a test.html");
console.log(encodeStr);
console.log(decodeURI(encodeStr));

程式碼執行效果截圖如下:

a:3:{s:3:\"pic\";s:43:\"portal/201902/11/225733zzrlh0tc5cl2405w.png\";s:5:\"thumb\";s:0:\"\";s:6:\"remote\";N;}

上面程式碼演示了通過decodeURI方法解碼經過encodeURI編碼的字串。 

相關文章