HTML에서 포커스가 있을 때 스크립트를 실행하려면 onfocus 속성을 사용하세요.
다음 코드를 실행하여 onfocus 속성 -
<!DOCTYPE html> <html> <body> <p>Enter subject name below,</p> Subject: <input type = "text" id = "sname" onfocus = "display(this.id)"> <br> <script> function display(val) { document.getElementById(val).style.background = "blue"; } </script> </body> </html>을 얻을 수 있습니다.
위 내용은 HTML 요소에 포커스가 있을 때 스크립트를 실행하시겠습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!