HTML onfocus 이벤트 속성은 HTML 문서에서 HTML 요소가 포커스를 받을 때 사용됩니다.
구문
다음은 구문입니다 -
<tagname onfocus=”script”></tagname>
예시
HTML onfocus 이벤트 Attribute의 예를 살펴보겠습니다. −
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
color: #000;
height: 100vh;
background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat;
text-align: center;
padding: 20px;
}
textarea {
border: 2px solid #fff;
background: transparent;
font-size: 1rem;
}
::placeholder {
color: #000;
font-size: 1rem;
}
</style>
</head>
<body>
<h1>HTML onfocus Event Attribute Demo</h1>
<textarea placeholder="Enter your message here" onfocus="focusFn()" rows='8' cols="50"></textarea>
<script>
function focusFn() {
document.querySelector('textarea').style.background = '#ffffff36';
}
</script>
</body>
</html> 출력

이제 텍스트 영역에 메시지를 입력하여 onfocus 이벤트 속성이 어떻게 작동하는지 관찰하십시오.
