如何删除使用 APPEND() 创建的 SPAN?

发布于 2024-09-16 16:13:06 字数 418 浏览 1 评论 0原文

我有这个代码

盒子

及之后:

$(".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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

﹉夏雨初晴づ 2024-09-23 16:13:06

使用 live() 方法:

$(".boxAlert").live('click', function(){
  $(this).remove();
});

live() 方法适用于现在存在或将来出现的元素。

Use the live() method:

$(".boxAlert").live('click', function(){
  $(this).remove();
});

The live() methods works for elements present now or those coming in future.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文