2016-09-30 19 views
1

jQueryライブイベントでDOMから要素削除を聴くことはできますか?jQuery - リスニング要素削除ライブ

私のようなものが必要です

$('body').on('remove', '.selector', function() { 
    console.log('Element removed.'); 
}); 

をしかし、それはあなたが探しているものかもしれない:(

答えて

4

が動作していない:

生憎
$.fn.customRemove = function() { 
    $(this).remove(); 
    console.log('Element removed.'); 
}; 

$('.selector').customRemove(); // you will get the log automatically 
+0

、これは私の問題を解決していない私は。すべての削除された要素を(標準的な方法で)処理する一般的なリスナーを作成し、手動で元のコードをハックしないようにしたい。 –

関連する問題