这是我的代码:
function showNotification(title, message) {
var newNotification = $('<div></div>');
var newNotificationHeader = $('<div>' + title + '</div>');
var newNotificationCloser = $('<div></div>');
newNotificationCloser.click(function(){
closeNotification($(this).closest('notification'));
});
var newNotificationMessage = $('<div>' + message + '</div>');
newNotification.attr('class', 'notification');
newNotification.css('opacity', 0);
newNotificationHeader.attr('class', 'notificationHeader');
newNotificationCloser.attr('class', 'notificationCloser');
newNotificationMessage.attr('class', 'notificationMessage');
newNotificationHeader.append(newNotificationCloser);
newNotification.append(newNotificationHeader);
newNotification.append(newNotificationMessage);
$('body').append(newNotification);
newNotification.animate({left: '10px', opacity:1}, 400).delay(15000).animate({top: '61px', opacity:0}, 500);
}
function closeNotification(notificationWindow) {
notificationWindow.animate({top: '61px', opacity:0}, 500);
}
基本上我正在尝试嵌套几个 div,然后将它们附加到正文中。
我的 closeNotification() 函数期望主 div 具有“通知”类。我不能使用 ID,因为在任何给定时间页面上可能有多个通知。
<body>
<div class="notification">
<div class="notificationHeader">
<div class="notificationCloser">
</div>
</div>
<div class="notificationMessage">
</div>
</div>
</body>
我曾尝试在notificationCloser的点击代码中使用以下两种方法:
closeNotification($(this).parent().parent());
和
closeNotification($(this).parents().eq(1));
奇怪的是,这些似乎不起作用,但以下将隐藏身体:
closeNotification($(this).parent().parent().parent());
和
closeNotification($(this).parents().eq(2));
对此的任何帮助将不胜感激。