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

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 unescape() 方法


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

Definition and Usage
定义与用法

The unescape() function decodes a string encoded with escape().
unescape()方法还原一个被escape()方法加密过的字符串

Syntax
语法

unescape(string)

Parameter
参数
Description
注释
string
字符串
Required. The string to be decoded
必选项。需要转换的字符串


Tips and Notes
注意

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 first encode the strings with the escape() function, and then decode them with the unescape() function:
在下面的例子中,我们先用escape()方法加密字符串,然后我们用unescape()方法进行解密:

<script type="text/javascript">
var test1="欢迎来到POP"
test1=escape(test1)
document.write (test1 + "<br />")
test1=unescape(test1)
document.write(test1 + "<br />")
</script>

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

%u6B22%u8FCE%u6765%u5230POP
欢迎来到POP

评论 (0) All

登陆 | 还没注册?