Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
body.onclick当页面大于实际正文大小时,点击空白处如何触发?
body.onclick
例如,主体是 300X400,但用户最大化了窗口,页面现在是 800X600。如果用户在实际身体区域之外单击,onclick则将不起作用。如何触发它?
onclick
将事件目标更改为,document而不是body,例如
document
body
document.addEventListener('click', eventListener, false);