Skip to content

Instantly share code, notes, and snippets.

@JohnBaek
Created August 17, 2016 01:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JohnBaek/dfe442715fd62a96050f58f879f0cc1f to your computer and use it in GitHub Desktop.
Save JohnBaek/dfe442715fd62a96050f58f879f0cc1f to your computer and use it in GitHub Desktop.
JS#EnterKey_Detecting
<input type="text" onKeyDown="onKeyDown();">
// in JavaScript Code
function onKeyDown()
{
if(event.keyCode == 13)
{
//TODO : 실행시킬 코드
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment