Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我的 foo_image 被附加到容器中,如下所示:
$container.append("<img id='FooImage' src='foo_image.png' />");
在另一种方法中,我想删除这个 FooImage ,就好像它从未附加过一样。我不确定如何仅使用img id. 希望这是一个愚蠢的问题,有人可以得到一个简单的答案!
img id
尝试.remove删除元素。
.remove
$('#FooImage').remove();
您可以根据元素的 id 查找和删除:
$("#FooImage").remove();