首页 > Web开发 > 详细

encodeURIComponent()编码和decodeURIComponent()解码

时间:2015-04-25 16:29:14      阅读:228      评论:0      收藏:0      [点我收藏+]

html1:

<!DOCTYPE HTML>

<meta charset=utf-8>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>test</title>

<a href="2.htm" v="任晓强" id="test">go</a>

<style>
	.cur{color:#f00;}
</style>


<script>
		test.href = test.href + "?" + encodeURIComponent(test.getAttribute("v"));//对任晓强进行编码

		

		
</script>

 

 

html2:

<!DOCTYPE HTML>

<meta charset=utf-8>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>test</title>


<div id="test"></div>

<style>
	.cur{color:#f00;}
</style>


<script>
	var name = decodeURIComponent(location.search).replace("?",""); //解码并替换网址

		//decodeURIComponent(name);

		console.log(name)

		test.innerHTML = "你好" + name; //给test赋值
</script>

 

encodeURIComponent()编码和decodeURIComponent()解码

原文:http://www.cnblogs.com/xupeiyu/p/4455958.html

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