下麵是 escape() 函數的示例。
- Example:
<script> // Special character encoded with // escape function document.write(escape("Geeks for Geeks!!!")); document.write("<br>"); // Print encoded string using escape() function // Also include exceptions i.e. @ and . document.write(escape("To contribute articles contact"+ " us at contribute@geeksforgeeks.org")); </script>
- Output:
Geeks%20for%20Geeks%21%21%21 To%20contribute%20articles%20contact%20us%20atcontribute @geeksforgeeks.org
escape() 函數將字符串作為參數並對其進行編碼,以便將其傳輸到任何支持 ASCII 字符的網絡中的任何計算機。
用法:
escape(string)
參數:該函數接受如上所述和以下描述的單個參數:
- string:此參數保存將被編碼的字符串。
返回值:此函數返回一個編碼字符串。
注意:此函數僅對特殊字符進行編碼,此函數已棄用。
異常:@ - + 。 /* _
以上函數的更多示例代碼如下:
程序1:
<script>
// Special character encoded with
// escape function
document.write(escape("Geeks for Geeks!!!"));
document.write("<br>");
// Print encoded string using escape() function
// Also include exceptions i.e. @ and .
document.write(escape("A Computer Science Portal"));
</script>
輸出:
Geeks%20for%20Geeks%21%21%21 A%20Computer%20Science%20Portal
程序2:
<script>
// Special character encoded with
// escape function
document.write(escape("GeeksforGeeks"));
document.write("<br>");
// Print encoded string using escape() function
// Also include exceptions i.e. @ and .
document.write(escape("A#Computer-Science"+
"%Portal@for*Geeks"));
</script>
輸出:
GeeksforGeeks A%23Computer-Science%25Portal@for*Geeks
支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- 火狐瀏覽器
- Safari
- Opera
相關用法
注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 JavaScript escape() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。