码迷,mamicode.com
首页 > Web开发 > 详细

js转义字符串与解析字符串(%3A%2F%)

时间:2018-08-17 19:58:36      阅读:2501      评论:0      收藏:0      [点我收藏+]

标签:script   uri   code   html   字符串   fir   nbsp   htm   decode   

转义字符串:encodeURIComponent(str)

解析字符串:decodeURIComponent(str)

 

<html>
<body>

<script type="text/javascript">

var test1="http://www.w3school.com.cn/My first/"
document.write(encodeURIComponent(test1)+ "<br />")
document.write(decodeURIComponent(test1))

</script>

</body>
</html>

结果:

http%3A%2F%2Fwww.w3school.com.cn%2FMy%20first%2F
http://www.w3school.com.cn/My first/

js转义字符串与解析字符串(%3A%2F%)

标签:script   uri   code   html   字符串   fir   nbsp   htm   decode   

原文地址:https://www.cnblogs.com/qijiamin/p/9494871.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!