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

转义字符串: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/

猜你喜欢

转载自www.cnblogs.com/qijiamin/p/9494871.html