Use decodeURIComponent instead of decodeURI

pull/273/head
Sheng 2022-02-23 05:14:31 +08:00
parent 11bd7fea47
commit 86c98dacc4
1 changed files with 3 additions and 3 deletions

View File

@ -106,9 +106,9 @@ jQuery(function($){
} }
function decode_uri(uri) { function decode_uri_component(uri) {
try { try {
return decodeURI(uri); return decodeURIComponent(uri);
} catch(e) { } catch(e) {
console.error(e); console.error(e);
} }
@ -833,7 +833,7 @@ jQuery(function($){
parse_url_data( parse_url_data(
decode_uri(window.location.search.substring(1)) + '&' + decode_uri(window.location.hash.substring(1)), decode_uri_component(window.location.search.substring(1)) + '&' + decode_uri_component(window.location.hash.substring(1)),
form_keys, opts_keys, url_form_data, url_opts_data form_keys, opts_keys, url_form_data, url_opts_data
); );
// console.log(url_form_data); // console.log(url_form_data);