unescape - 文字をアンエスケープ
スポンサードリンク
構文
unescape(string)
サポートブラウザ:
- 3+
- 1+
「文字をアンエスケープ」サンプルコード
1 | <html> |
2 | |
3 | <head> |
4 | <title>unescape - 文字をアンエスケープ</title> |
5 | </head> |
6 | |
7 | <body> |
8 | |
9 | <!--文字をアンエスケープのサンプル--> |
10 | <script type="text/javascript"> |
11 | document.write(unescape("http%3A//www.yahoo.co.jp/")+ "<br>"); |
12 | document.write(unescape("%26/%3F%3A@%23%3D%2C+%24 ")); |
13 | </script> |
14 | |
15 | </body> |
16 | </html> |
ポップアップ | 印刷 | ←ポップアップでソースコードを開き、簡単にコピーできます | ? |
スポンサードリンク
「unescapeの動作デモ」
新しいウィンドウで実行 | スクリプトを編集&実行 - スクリプトをWEB上で編集&動作確認することが出来ます。
スポンサードリンク