源码:
<script>
var url="http://www.jianshu.com/abc?123.html"
var jiami=encodeURIComponent(url);
console.log(jiami);
console.log(decodeURIComponent(jiami))
</script>
输出:
http%3A%2F%2Fwww.jianshu.com%2Fabc%3F123.html
源码:
<script>
var url="http://www.jianshu.com/abc?123.html"
var jiami=encodeURIComponent(url);
console.log(jiami);
console.log(decodeURIComponent(jiami))
</script>
输出:
http%3A%2F%2Fwww.jianshu.com%2Fabc%3F123.html