如何使用jQuery解码URL?

前端之家收集整理的这篇文章主要介绍了如何使用jQuery解码URL?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用jQuery解码URL?我的网址是

http%3A%2F%2Fdtzhqpwfdzscm.cloudfront.net%2F4ca06373624db.jpg

解决方法

尝试 decodeURIComponent功能
var decodedUri = decodeURIComponent('http%3A%2F%2Fdtzhqpwfdzscm.cloudfront.net%2F4ca06373624db.jpg');
alert(decodedUri);
原文链接:https://www.f2er.com/jquery/184661.html

猜你在找的jQuery相关文章