共计 154 个字符,预计需要花费 1 分钟才能阅读完成。
// 监听
let myItem = document.querySelector("#myBoxArea");
window.addEventListener("click", (e) => {if (e.target != myItem && !myItem.contains(e.target)) {if (1) {//todo}
}
})
正文完
发表至: javascript
2022-04-07