|
Revision 25, 0.7 KB
(checked in by yabuki, 3 years ago)
|
|
|
-
Property svn:mime-type set to
text/plain
|
| Line | |
|---|
| 1 | <?xml version="1.0" encoding="UTF-8" ?> |
|---|
| 2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
| 3 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 4 | <head> |
|---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
|---|
| 6 | <script type="text/javascript" src="prototype.js"></script> |
|---|
| 7 | <script type="text/javascript"> |
|---|
| 8 | function load(code){ |
|---|
| 9 | new Ajax.Updater('result','zip.jsp?zip='+code); |
|---|
| 10 | } |
|---|
| 11 | </script> |
|---|
| 12 | <title>郵便番号検索</title> |
|---|
| 13 | </head> |
|---|
| 14 | <body> |
|---|
| 15 | <form action="zip.jsp" method="get"> |
|---|
| 16 | <p> |
|---|
| 17 | <input name="zip" value="" type="text" onkeyup="load(this.value);" /> |
|---|
| 18 | <input name="submit" value="検索" type="submit" /> |
|---|
| 19 | </p> |
|---|
| 20 | </form> |
|---|
| 21 | <div id='result'></div> |
|---|
| 22 | </body> |
|---|
| 23 | </html> |
|---|