首页 > Web开发 > 详细

JS Encode and Decode URL

时间:2016-02-25 15:39:22      阅读:249      评论:0      收藏:0      [点我收藏+]

1.Encode URL String

var url = $(location).attr(‘href‘); //get current url
//OR
var url = ‘folder/index.html?param=#23dd&noob=yes‘; //or specify one

var encodedUrl = encodeURIComponent(url);
console.log(encodedUrl);
//outputs folder%2Findex.html%3Fparam%3D%2323dd%26noob%3Dyes

2.Decode URL String

var url = $(location).attr(‘href‘); //get current url
//OR
var url = ‘folder%2Findex.html%3Fparam%3D%2323dd%26noob%3Dyes‘; //or specify one

var decodedUrl = decodeURIComponent(url);
console.log(decodedUrl);
//outputs  folder/index.html?param=#23dd&noob=yes

3.HTML URL Endoding References  

space 	%20
! 	%21
" 	%22
# 	%23
$ 	%24
% 	%25
& 	%26
‘ 	%27
( 	%28
) 	%29
* 	%2A
+ 	%2B
, 	%2C
- 	%2D
. 	%2E
/ 	%2F
... 
etc

测试网址:http://www.w3schools.com/tags/ref_urlencode.asp

原文网址:http://www.sitepoint.com/jquery-decode-url-string/

JS Encode and Decode URL

原文:http://www.cnblogs.com/akwwl/p/5216835.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!