标签: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/
标签:script uri code html 字符串 fir nbsp htm decode
原文地址:https://www.cnblogs.com/qijiamin/p/9494871.html