摘要: function fixedEncodeURIComponent (str) { return str.replace(/./g, function(c) { return '%' + c.charCodeAt(0).toString(16).toUpperCase(); }); } 阅读全文
posted @ 2019-07-20 17:36 小小高 阅读(282) 评论(0) 推荐(0) 编辑