js转义与解析url字符串(%3A%2F%)
转义:
encodeURIComponent(str)
解析:
decodeURIComponent(str)
<html>
<body>
<script type="text/javascript">
var url = "https://juejin.im/timeline"
console.log(encodeURIComponent(url))
console.log(decodeURIComponent(url))
</script>
</body>
</html>
控制台输出结果:
'https%3A%2F%2Fjuejin.im%2Ftimeline'