「URLエンコード」サンプルコード <html> <head> <title>encodeURI - URLエンコード</title> </head> <body> <!--URLエンコードのサンプル--> <script type="text/javascript"> document.write(encodeURI("http://www.yahoo.co.jp/")+ "<br>"); document.write(encodeURI("&/?:@#=,+$")); </script> </body> </html>