Last active
August 29, 2015 14:12
-
-
Save t-min/a0c4e372b0e8ac0d0837 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| function kopipe(){ | |
| if (ikisaki.value == 0){ | |
| document.getElementById("kekka").innerHTML = "行き先0"; | |
| } else if (ikisaki.value == 1) { | |
| document.getElementById("kekka").innerHTML = "行き先1"; | |
| } else if (ikisaki.value == 2){ | |
| document.getElementById("kekka").innerHTML = "行き先2 "; | |
| } else if (ikisaki.value == 3){ | |
| document.getElementById("kekka").innerHTML = "行き先3"; | |
| } | |
| } | |
| </script> | |
| <select id="ikisaki"> | |
| <option value="0" selected="selected">吉野家に行く</option> | |
| <option value="1">ドコモショップに行く</option> | |
| <option value="2">ハロワに行く</option> | |
| <option value="3">糞スレに行く</option> | |
| </select> | |
| <input type="button" value="GO" onclick="kopipe(ikisaki)"> | |
| <div id="kekka">ここにコピペを表示します</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment