すべてのイベント ハンドラーをクリーンアップし、メモリ リークを引き起こさない方法で jQuery フロート グラフを破棄する正しい方法は何ですか?
flot がいくつかのゾンビを置き去りにしているようです (別名 Detached Dom Trees)
API ドキュメントを読むと、クリーンアップするシャットダウン メソッドがあります。
shutdown()
Cleans up any event handlers Flot has currently registered. This
is used internally.
例えば。
var plot = $.plot($("#yourDiv"), options)
plot.shutdown()
flot グラフを削除するには
var placeholder = $("#FlotDiv");
placeholder.unbind(); //Remove a previously-attached event handler from the elements.
placeholder.empty();
また、特定のイベントのバインドを解除したい場合は、次の方法があります。
$( "#foo").unbind( "click" );
詳細については、これをチェックしてください。