我正在研究通知系统。请参阅fiddle here。
我尝试使用
关闭元素this.remove();
它没有用,也没有错误。 我也尝试过:
this.parent.remove();
这给出了一个错误:
Uncaught TypeError: Cannot call method 'remove' of undefined
如何让关闭按钮正常工作?
答案 0 :(得分:3)
this
指的是没有remove()方法的dom元素引用,你需要dom元素的jQuery包装器。
您还需要删除父div
元素
$closeButton.click(function(){
$(this).parent().remove();
});
演示:Fiddle