JavaScript unescape() 函數(shù)
JavaScript 全局函數(shù)定義和用法
unescape() 函數(shù)可對通過 escape() 編碼的字符串進(jìn)行解碼。
提示: 使用函數(shù)escape() 對字符串進(jìn)行編碼。
語法
unescape(string)
參數(shù) | 描述 |
---|---|
string | 必需。要解碼的字符串。 |
瀏覽器支持
所有主要瀏覽器都支持 unescape() 函數(shù)。
提示和注釋
注意: unescape()不能使用于對 URI(通用資源標(biāo)識(shí)符:UniformResourceIdentifier,簡稱"URI")精選解碼. 解碼 URI 請使用 decodeURI() 方法。
實(shí)例
實(shí)例
在本例中,我們將使用 escape() 來編碼字符串,然后使用 unescape() 對其解碼:
<script>
var str="Need tips? Visit W3Cschools!";
var str_esc=escape(str);
document.write(str_esc + "<br>")
document.write(unescape(str_esc))
</script>
var str="Need tips? Visit W3Cschools!";
var str_esc=escape(str);
document.write(str_esc + "<br>")
document.write(unescape(str_esc))
</script>
以上實(shí)例輸出結(jié)果:
Need%20tips%3F%20Visit%20W3Cschool%21
Need tips? Visit W3Cschool!
Need tips? Visit W3Cschool!
嘗試一下 ?
JavaScript 全局函數(shù)
更多建議: