[JAVASCRIPT] 자바스크립트 새로고침 방지 소스코드 새로고침을 할 수 있는 KEYCODE 들을 전부 조건문에 넣어 returnValue를 false로 만들어 새로고침이 안되게 하였다. function NotReload(){ if( (event.ctrlKey == true && (event.keyCode == 78 || event.keyCode == 82)) || (event.keyCode == 116) ) { event.keyCode = 0; event.cancelBubble = true; event.returnValue = false; } } document.onkeydown = NotReload;
준비물 Visual Studio code OR https://repl.it , google Chrome, git&hub ORhttps://repl.it study Powerful and simple online compiler, IDE, interpreter, and REPL. Code, compile, and run code in 50+ programming languages: Clojure, Haskell, Kotlin (beta), QBasic, Forth, LOLCODE, BrainF, Emoticon, Bloop, Unlambda, JavaScript, CoffeeScript, Scheme, APL, Lu repl.it 자바스크립트란 ? - 웹에 쓰이는 하나뿐인 프로그래밍 언어 - 옵션이 하나이..