网址编码函数
Posted ustc-yy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网址编码函数相关的知识,希望对你有一定的参考价值。
我们知道一个网址 自己的网址, 不同页面也有自己id网址, 我们经常会做一些, 把网址送入到后台。 但是后台再处理的 不认识比如 换行啊 等特殊符号的 ?
var url = “http://www.itast.cn?name=cz”
所以我们要实现编码,然后再传到后台。
encodeURIComponent() 函数可把字符串作为 URI 组件进行编码
decodeURIComponent() 函数可把字符串作为 URI 组件进行解码
var url = "http://www.itcast.cn?name=andy";
console.log(encodeURIComponent(url)); // 编码
var afterUrl = encodeURIComponent(url);
console.log(decodeURIComponent(afterUrl)); // 解码
结果:
以上是关于网址编码函数的主要内容,如果未能解决你的问题,请参考以下文章