js转义字符串与解析字符串(%3A%2F%)
Posted qijiamin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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/
以上是关于js转义字符串与解析字符串(%3A%2F%)的主要内容,如果未能解决你的问题,请参考以下文章