JS는 객체가 포커스를 받았는지 확인합니다. document.activeElement.tagName //tagName 태그 이름
예: 본문에 커서가 있을 때 입력 방법을 닫을지 여부를 결정합니다.
<script><br>function test(){<br>var srcElem = document.activeElement<br>var testval = srcElem.name; //id와 name이 더 일반적으로 사용되며 <br>경고해야 합니다. ("control" testval "Get focus");<br>}<br></script>