JavaScript decodeURIComponent()

admin發表於2019-02-11

此方法可對encodeURIComponent方法編碼的URI進行解碼。

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

語法結構:

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

引數解析:

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

程式碼例項:

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

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

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

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

相關文章