我有这段代码
BOX
和之后:
$( “boxAlert”)。单击(函数(){ $(这)一个.remove(); //$(this).fadeOut(500); });
好的,当我点击带有类boxAlert的SPAN时,它会删除它。
但是我不能删除我用这种方式创建的SPAN ..
$('#myDiv')。append('Invalid Mail');
我以这种方式创建的SPAN出现在页面中,并且已经应用了类boxAlert,但我无法将其删除或fadeOut或其他任何内容。
有什么想法吗?
答案 0 :(得分:1)
使用live()
方法:
$(".boxAlert").live('click', function(){
$(this).remove();
});
live()
方法适用于现在存在的元素或将来存在的元素。