escape()函數將字符串作為參數並對其進行編碼,以便可以將其傳輸到支持ASCII字符的任何網絡中的任何計算機。
用法:
escape(string)
注意:此函數僅編碼特殊字符。
異常:@-+。 /* _
<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>
輸出:
Geeks%20for%20Geeks%21%21%21 To%20contribute%20articles%20contact%20us%20atcontribute@geeksforgeeks.org
注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 JavaScript | escape()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。