0
我有一個通知div,如果用戶點擊.notification-popup將彈出。我試圖這樣做,popop div會隱藏每當用戶點擊該DIV的一面。jquery - 隱藏div點擊正文
目前我有這樣的:
$('body').on('click', function (e) {
$('.notification-list-wrapper').each(function() {
//the 'is' for buttons that trigger popups
//the 'has' for icons within a button that triggers a popup
if (!$(this).is(e.target) && $(this).has(e.target).length === 0 && $('.notification-list-wrapper').has(e.target).length === 0) {
$(this).hide();
}
});
});
當我點擊.notification-彈出雖然隨着這個沒什麼甚至發生。
我應該改變什麼?
你打我幾秒鐘,darn:P – Terry