web-dev-qa-db-ja.com

JavaScript URLデコード機能

最高のJavaScript URLデコードユーティリティとは何ですか?エンコードもいいでしょうし、jQueryでうまく機能することは追加のボーナスです。

153
at.
215
Geoff

完全な関数は次のとおりです( PHPJS から取得):

function urldecode(str) {
   return decodeURIComponent((str+'').replace(/\+/g, '%20'));
}
231
anshuman
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]
9
Etienne Dupuis

これを使って

unescape(str);

私は素晴らしいJSプログラマーではありません。

7
nithinreddy
//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));
3
Irfan M

Urlencodeを使用してPHPのデータをエンコードする場合、PHPのrawurlencodeは、+文字を置き換えることなくJavaScriptのdecodeURIComponentと連携します。

2
Brent Self

私が使用したものは次のとおりです。

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

1
user3572058
var uri = "my test.asp?name=ståle&car=saab";
console.log(encodeURI(uri));
0
methodpool.io