標籤:

decodeURIComponent() 函數

定義和用法

decodeURIComponent() 函數可對 encodeURIComponent() 函數編碼的 URI 進行解碼。

語法

decodeURIComponent(URIstring)

參數 描述
URIstring 必需。一個字元串,含有編碼 URI 組件或其他要解碼的文本。

返回值

URIstring 的副本,其中的十六進位轉義序列將被它們表示的字元替換。

實例

在本例中,我們將使用 decodeURIComponent() 對編碼後的 URI 進行解碼:

<script type="text/javascript">var test1="http://www.w3school.com.cn/My first/"document.write(encodeURIComponent(test1)+ "<br />")document.write(decodeURIComponent(test1))</script>

輸出:

http%3A%2F%2Fwww.w3school.com.cn%2FMy%20first%2Fhttp://www.w3school.com.cn/My first/

推薦閱讀:

想學好函數公式,這些符號一定要懂!
一起認識COUNTIF函數(應用篇)
Excel INDEX+SMALL函數用法
想要成為數據科學家?知道這11種機器學習演算法嗎?
工作中最常用的Excel求和函數公式大全,幫你收集齊了,拿來即用

TAG:函數 |