我已經在javascript中創建了一個圖像標記用於某些處理,之後當我完成處理時,我需要刪除/處理該對象。我使用jquery刪除方法來刪除對象。 jquery刪除方法和爲對象分配null有什麼區別?我應該使用哪個?Javascript中的Disposing Element和使用jQuery刪除方法刪除有什麼區別
function processInfo()
{
var img = new Image();
/*
some processing.
*/
// at this line i need to remove/dispose the object.
$(img).remove();
}
是否將對象添加到dom中?是否有任何與元素相關的jQuery事件處理程序/數據 –
井對象被添加到dom中......沒有與元素 –