在我的网页中,我有某些显示用户数据的 div。在某个事件中,我需要删除每个单击的 div。我想在删除 div 之前让它更漂亮一点。
所以我使用了 animate 方法和 animate 方法的内部回调,我编写了代码以从 dom 中删除该 div。但问题是它表明不能在 null 上调用 remove。animate 方法是如何在该 div 上运行并在其回调中变为 null 的。
请帮助我解决问题,并建议是否有更好的方法。
confirmOpen = //Holding reference of div to be removed.
//animate method is running perfectly fine.
confirmOpen.animate({"width":"1px","height":"1px"},500,function()
{
console.log(confirmOpen); //Logging null
confirmOpen.remove(); //Showing error that remove method cannot be called on a null value.
});