Js ascii 16进制 url-encode

function fixedEncodeURIComponent (str) {
    return str.replace(/./g, function(c) {
      return '%' + c.charCodeAt(0).toString(16).toUpperCase();
    });
}

 

posted @ 2019-07-20 17:36  小小高  阅读(279)  评论(0编辑  收藏  举报