最高のJavaScript URLデコードユーティリティとは何ですか?エンコードもいいでしょうし、jQueryでうまく機能することは追加のボーナスです。
encodeURIComponent() と decodeURIComponent() も使用しました。
完全な関数は次のとおりです( PHPJS から取得):
function urldecode(str) {
return decodeURIComponent((str+'').replace(/\+/g, '%20'));
}
decodeURIComponent(mystring);
次のコードを使用して、渡されたパラメーターを取得できます。
//parse URL to get values: var i = getUrlVars()["i"];
function getUrlVars() {
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for (var i = 0; i < hashes.length; i++) {
hash = hashes[i].split('=');
vars.Push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}
または、このワンライナーでパラメーターを取得します。
location.search.split("your_parameter=")[1]
これを使って
unescape(str);
私は素晴らしいJSプログラマーではありません。
//How decodeURIComponent Works
function proURIDecoder(val)
{
val=val.replace(/\+/g, '%20');
var str=val.split("%");
var cval=str[0];
for (var i=1;i<str.length;i++)
{
cval+=String.fromCharCode(parseInt(str[i].substring(0,2),16))+str[i].substring(2);
}
return cval;
}
document.write(proURIDecoder(window.location.href));
Urlencodeを使用してPHPのデータをエンコードする場合、PHPのrawurlencodeは、+文字を置き換えることなくJavaScriptのdecodeURIComponentと連携します。
私が使用したものは次のとおりです。
JavaScriptの場合:
var url = "http://www.mynewsfeed.com/articles/index.php?id=17";
var encoded_url = encodeURIComponent(url);
var decoded_url = decodeURIComponent(encoded_url);
PHPの場合:
$url = "http://www.mynewsfeed.com/articles/index.php?id=17";
$encoded_url = url_encode(url);
$decoded_url = url_decode($encoded_url);
こちらからオンラインで試すこともできます: http://www.mynewsfeed.x10.mx/articles/index.php?id=17
var uri = "my test.asp?name=ståle&car=saab";
console.log(encodeURI(uri));