offsetParentがNullの場合が該当。
const isVisible = (id: string) => {
const target = document.getElementById(id)
if (!target) {
return false
}
return target.offsetParent !== null
}
offsetParentがNullの場合が該当。
const isVisible = (id: string) => {
const target = document.getElementById(id)
if (!target) {
return false
}
return target.offsetParent !== null
}
コメント