应用技巧

关注公众号 jb51net

关闭
首页 > 实用技巧 > 应用技巧 >

不同语言的URLEncode

作者:

不同语言的URLEncode
不同语言的URLEncode

1.javascript
encodeURIComponent 方法
将文本字符串编码为一个统一资源标识符 (URI) 的一个有效组件。

encodeURIComponent(encodedURIString)

必选的 encodedURIString 参数代表一个已编码的 URI 组件。

说明
encodeURIComponent 方法返回一个已编码的 URI。如果您将编码结果传递给 decodeURIComponent,那么将返回初

始的字符串。因为 encodeURIComponent 方法对所有的字符编码,请注意,如果该字符串代表一个路径,例如 

/folder1/folder2/default.html,其中的斜杠也将被编码。这样一来,当该编码结果被作为请求发送到 web 服务

器时将是无效的。如果字符串中包含不止一个 URI 组件,请使用 encodeURI 方法进行编码。

2.PHP

urlencode()
urldecode()

3.ASP
Server.UrlEncode 
您可能感兴趣的文章:
阅读全文