07 2021 档案
摘要:使用浏览器内置的base64编码和解码的能力。 function utf8_to_b64( str ) { return window.btoa(unescape(encodeURIComponent( str ))); } function b64_to_utf8( str ) { return
阅读全文
摘要:const urlSP = new URLSearchParams(location.search); function getQueryString(key){ return urlSP.get(key) }// 或着 const urlObj = new URL(location.href);
阅读全文