当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript escape() 方法

JavaScript
JS数学对象参考
JS字符串对象参考
JS函数参考
JS事件参考
Javascript 常用正则表达式
FF和IE下的js兼容性问题
jQuery 简单介绍
jQuery / 核心 / $(expression, [context] ) 函数
jQuery / 核心 / $(html) 函数
如何使用JS来判断浏览器类型(ie、firefox,等等)
Javascript在IE和FireFox中的不同表现
3个js字符编码函数区别
javascript 中的 XMLDOM 对象

JavaScript escape() 方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 368 ::
收藏到网摘: n/a

Definition and Usage
定义与用法

The escape() function encodes a string, so it can be read on all computers.
escape()方法将字符串转换为特定的编码,使其能够被任意的计算机识别和读取。

Syntax
语法

escape(string)

Parameter
参数
Description
注释
string
字符串
Required. The string to be encoded
必选项。所要编译的字符串


Tips and Notes
注意

Note: The escape() function encodes special characters, with the exception of:
* @ - _ + . /
注意:* @ - _ + . / 不能被escape()方法编译

Tip: Use the unescape() function to decode strings encoded with escape().
提示:可以用unescape()方法来反编译经过escape()加密过的字符串

Note: The escape() and unescape() functions should not be used to encode or decode URIs. Use encodeURI() and decodeURI() functions instead!
注意:escape()和unescape()方法不能用于编译URIs。要编译URIs可以使用encodeURI()和decodeURI()。


Example
实例

In this example we use escape() to encode strings:
在下面的例子中我们用escape()来加密字符串:

<script type="text/javascript">
document.write(escape("欢迎来到POP") + "<br />")
document.write(escape("?!=()#%&"))
</script>

The output of the code above will be:
输出结果为:

	 


Try-It-Yourself Demos
互动演练

escape()
How to use escape() to encode different strings.
如何用escape()来编译不同的字符串

评论 (0) All

登陆 | 还没注册?