document.activeElement — 현재 포커스된 요소

const el = document.activeElement

if (el.tagName === 'INPUT') console.log(el.value)

// 모달 열릴 때 닫기 버튼으로 포커스 이동
document.querySelector('.modal .close-button').focus()
#375