ux: 点击模态框外部区域自动关闭
This commit is contained in:
@@ -8,6 +8,15 @@ var refreshTimer = null;
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
loadConfig();
|
||||
refreshAll();
|
||||
|
||||
// 点击模态框背景关闭
|
||||
document.querySelectorAll('.modal').forEach(function(modal) {
|
||||
modal.addEventListener('click', function(e) {
|
||||
if (e.target === modal) {
|
||||
modal.classList.remove('active');
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
function loadConfig() {
|
||||
|
||||
Reference in New Issue
Block a user