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%)的主要内容,如果未能解决你的问题,请参考以下文章

使用转义字符输出正确的网址

JAVA中转义字元的疑问

js转义特别符号

对JSON.parse()中存在转义字符的解决以及js中替换函数replace()的认识

http url转义字符,特殊字符

SQL语句中转义字符怎么写?