如何删除使用 APPEND() 创建的 SPAN?
我有这个代码
盒子
及之后:
$(".boxAlert").click(function(){ $(this).remove(); //$(this).fadeOut(500); });
没关系,当我单击带有 boxAlert 类的 SPAN 时,它会将其删除。
但我无法删除我以这种方式创建的SPAN。
$('#myDiv').append('无效邮件');
我以这种方式创建的 SPAN 出现在页面中,并应用了 boxAlert 类,但我无法删除它或 fadeOut 或任何其他内容。
有什么想法吗?
I have this code
BOX
and After:
$(".boxAlert").click(function(){
$(this).remove();
//$(this).fadeOut(500); });
It's OKAY, when I click on the SPAN with class boxAlert, it removes it.
But I can not remove the SPAN's I created this way..
$('#myDiv').append('Invalid Mail');
The SPAN I create this way appears in the page and has the class boxAlert, applied, but I can not remove it or fadeOut or anything..
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
live()
方法:live()
方法适用于现在存在或将来出现的元素。Use the
live()
method:The
live()
methods works for elements present now or those coming in future.