onfocusin 이벤트는 요소가 포커스를 얻을 때 트리거됩니다. 다음 코드를 실행하여 onfocusin을 구현하는 방법을 배울 수 있습니다. 자바스크립트의 이벤트 -
예시
<!DOCTYPE html> <html> <body> <p>Write below:</p> <input type="text" onfocusin="newFunc(this)"> <script> function newFunc(x) { x.style.background = "blue"; } </script> </body> </html>