Last active
December 14, 2015 03:29
-
-
Save moccos/5021478 to your computer and use it in GitHub Desktop.
HTMLFormElementを使って、新しいウィンドウで開く。
This file contains 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
if (e.shiftKey) { | |
var target = Math.random().toString(); | |
form.target = target; | |
window.open("about:blank", target).focus(); | |
} | |
// ... | |
form.submit(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment