例
それを符号化した後のURIをデコード:
var uri = "http://w3ii.com/my test.asp?name=stale&car=saab";
var
uri_enc = encodeURIComponent(uri);
var uri_dec = decodeURIComponent(uri_enc);
var res = uri_enc + "<br>" +
uri_dec;
解像度の結果は次のようになります。
http%3A%2F%2Fw3ii.com%2Fmy%20test.asp%3Fname%3Dst%C3%A5le%26car%3Dsaab
// Encoded URI
http://w3ii.com/my test.asp?name=stale&car=saab // Decoded URI
»それを自分で試してみてください 定義と使用法
decodeURIComponent()関数は、URIコンポーネントをデコードします。
ヒント:使用encodeURIComponentで() URIコンポーネントをエンコードする機能を。
ブラウザのサポート
関数 | |||||
---|---|---|---|---|---|
decodeURIComponent() | はい | はい | はい | はい | はい |
構文
decodeURIComponent( uri )
パラメーター値
Parameter | Description |
---|---|
uri | Required. The URI to be decoded |
技術的詳細
戻り値: | デコードされたURIを表す文字列、 |
---|
JavaScriptのグローバル関数