码迷,mamicode.com
首页 > 其他好文 > 详细

网址编码函数

时间:2019-12-25 17:42:10      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:mamicode   com   解码   技术   strong   符号   decode   一个   png   

 

我们知道一个网址 自己的网址,   不同页面也有自己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));  // 解码

结果:

技术图片

网址编码函数

标签:mamicode   com   解码   技术   strong   符号   decode   一个   png   

原文地址:https://www.cnblogs.com/ustc-yy/p/12097914.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!