我有关闭弹出窗口的功能:
function unloadPopupBox() { // TO Unload the Popupbox
$('#popup_box').fadeOut("slow");
$("#container").css({ // this is just for style
"opacity": "1"
});
}
我在某些包含图表的场合显示此窗口。此图表包含大量数据点,可能会降低浏览器的速度。当我关闭它时,是否可以清除此 div 中的数据。除了 fadeOut,我还可以使用什么其他方法来删除此 popup_box div 中的数据?