encodeURIComponent与decodeURIComponent

<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/

posted @ 2014-07-28 14:52  太笼统  阅读(107)  评论(0编辑  收藏  举报