HTML には、完全に jQuery によって生成され、不要になったときに削除される要素がいくつかあります。
これらの行に沿ったもの:
var div = $('<div/>').attr('id', 'addedItem');
$('body').append(div);
たとえば、閉じたときは次のようにします。
$('#addedItem').remove();
しかし...使用中に、addedItem
別の機能を追加するためにtinyMCE
クラスを変更する可能性があります。textArea
$('#textAreaId').tinymce({ vars });
リッチ テキスト エディターをテキスト領域に追加します (正しいスクリプトがすべて読み込まれている場合)。 の末尾に新しい行を追加しましたtinymce()
。
$(applyTo).addClass('editorLoaded');
コードがエディターを同じ要素に 2 回追加しようとするのを防ぐため。
これはすべて素敵に機能します...しかし...
このウィンドウを閉じて行を呼び出し、$('#addedItem').remove();
後で (ページをリロードせずに) ページに再度追加して再度表示すると、要素に追加されたクラスが残ります。
つまり、要するに。ID を持つ要素がjQuery によってaddedItem
追加され、処理が行われ、クラス属性が追加されます。body
jQueryで終了すると、要素が完全に削除されます。少し後で、idaddedItem
を持つ新しい要素をbody
using jQuery に再度追加します。これは新しい要素ですが、削除前に追加された class 属性を保持しています!
jQuery DOCS によると、remove()
動作は次のようになります。
要素自体に加えて、要素に関連付けられたすべてのバインドされたイベントと jQuery データが削除されます。
これは、jQuery を使用して要素に追加されたクラスやデータなどを削除する必要があることを意味します。
この問題を管理できるように、ブラウザのメモリ/キャッシュなどでこれらの要素とそれらへのすべての参照を削除するのを手伝ってくれる人はいますか?
それが助けになるなら、jQueryのバージョンは1.7.1です
========== 編集 > さらにコードを追加 ================
上記は私の問題の概要を示しています。実際のコードは次のとおりです
// create a modal window with a top right X closer from any element
$.fn.makeModal = function (vars) {
var theId = $(this).attr('id');
var exists = false;
try {
if ($('#' + theId + '_wrap').length > 0) { // firstly check the element has already been "made modal"
exists = true;
};
} catch (err) {
exists = false;
};
if (!exists) { // if this is the first time
var win = this;
var h;
var w;
var persist;
var alert;
if (vars) {
h = vars.height;
w = vars.width;
persist = vars.persist;
alert = vars.alert;
};
if (typeof h == "string") {
h = (h.replace('px', '') * 1); // clean out px if dimensions posted in px
};
if (typeof w == "string") {
w = (w.replace('px', '') * 1); // clean out px if dimensions posted in px
};
var hRatio = 0.70;
var wRatio = 0.5;
var minW = 480;
if (!h) { h = $(window).height() * hRatio }; // default case if no height passed
if (!w) {
w = $(window).width() * wRatio;
minW = 480;
if (w < minW) { w = minW };
}; // default case if no width passed
// **** END BASIC VARIABLES
var wrapper = $('<div/>').attr('id', theId + '_wrap').addClass('modalContainer').css({ 'top': ($(window).height() - h) / 2, 'left': ($(window).width() - w) / 2, 'width': w, 'height': h }); // create a wrapper for the main content
var close = $('<span/>').addClass('closeModal').html('X').css({ 'z-index': getMaxZIndex() + 5 });
// creat close button
if (alert) {
$(close).addClass('alert');
$(wrapper).addClass('alert');
} else {
$(close).addClass('cross');
};
if (persist) {
$(wrapper).addClass('persist');
}; // persist variable allows you to determine whether to delete or simply hide element on close
$(win).addClass('modalContent').css({ 'display': 'block', 'width': w - 20, 'height': h - 20 }).appendTo(wrapper);
$('body').append(wrapper).opaqueBg();
$(wrapper).prepend(close).fadeIn('fast').css({ 'z-index': getMaxZIndex() + 3 });
$(close).modalCloser();
$(document).on('keyup', function (e) {
if (e.keyCode == 27) {
closeModal(wrapper);
$(document).unbind('keyup');
};
});
} else {
$('body').opaqueBg();
$('#' + theId + '_wrap').fadeIn('fast') // .children().css({ 'display': 'block' });
};
// END OF MODAL WINDOWS
};
上記の jQuery 関数は、動的に作成された要素などからモーダル ウィンドウを作成します。
閉じるなどの関連機能:
// top right X closer actions
$.fn.modalCloser = function (callBack) {
$(this).bind('click', function () {
$(this).closest('div.modalContainer').fadeOut(function () {
closeModal(this, callBack);
});
});
};
// close modal element by item
function closeModal(ele, callBack) {
if (!ele) {
ele = '.modalContainer'
};
if ($(ele).hasClass('noClose')) {
alert("Please wait... we're working on something.");
} else {
$(ele).fadeOut(function () {
var nextZ = getMaxZIndex('.modalContainer');
if (nextZ > 0) {
$('#screenBlank').css({ 'z-index': nextZ });
} else {
$('#screenBlank').fadeOut(function () { $(this).remove(); });
};
if (!$(this).hasClass('persist')) {
$(this).remove();
};
if (callBack) {
callBack();
};
});
};
};
// end modal window controls
// ****************************************************************************************************************************************************************
// create opaque background for modal window to sit on
$.fn.opaqueBg = function () {
$('#screenBlank').remove();
var z = getMaxZIndex() + 2;
var sb = $('<div/>').attr('id', 'screenBlank').addClass('noPrint centreLoader').css({ 'display': 'none', 'position': 'absolute', 'text-align': 'center', 'z-index': z, 'background-color': 'rgba(10, 0, 0, 0.7)', 'width': '100%', 'height': $(document).height(), 'top': '0px', 'left': '0px' });
$('body').prepend(sb);
$(sb).fadeIn().bind('click', function () {
closeModal('.modalContainer');
});
};
// find the maximum z-Index of elements on the page, used to ensure tooltips are always shown above anything else
// note, this will only work if major containing elements have explicitly set z-index
function getMaxZIndex(ele) {
if (!ele) {
ele = "div";
};
var zIndexMax = 0;
$(ele).each(function () {
if ($(this).css('display') != "none") {
var z = parseInt($(this).css('z-index'));
if (z > zIndexMax) { zIndexMax = z };
};
});
return zIndexMax;
};
// end finding maximum z-index
したがって、上記のすべては、私のプロジェクト内のあらゆる種類の目的のための関数の一般的なセットです。
この投稿を促した特定の目的は、tinymce
適用されたモーダル ウィンドウ内にテキストエリアを作成することでした。これは次のように機能します。
$('#notePad .plus').on('click', function () {
var h = $('<h2/>').html('Add Note');
var txt = $('<textarea/>').attr('id', 'noteEditorContent').attr('name', 'newNote').css({ 'width': '100%', 'height': '400px' });
var wrpper = $('<div/>').css({ 'width': '750', 'height': '380', 'margin': 'auto' }).append(txt);
var button = $('<span/>').addClass('greenButton').html('Save').css({ 'float': 'right', 'margin': '40px 20px 0px 20px', 'width': '80px' }).bind('click', function () {
saveStaffNote($('#noteEditorContent').val(), true);
});
var div = $('<div>').attr('id', 'notePadEditor').append(h).append(wrpper).append(button);
$(txt).richEditor('simple', function () {
$(div).makeModal({ 'width': '800', 'height': '530', 'persist': true });
// CALLING THE makeModal() function above
});
});
そして最後に、のアプリケーションtinymce
は次の関数です。
// === loading Rich Text Editors //
$.fn.richEditor = function (theTheme, callBack) {
var applyTo = this;
var tinyMceVars = {
// Location of TinyMCE script
script_url: '/Admin/Plugins/richEditor/tiny_mce.js',
// General options
theme: theTheme,
plugins: "autolink,lists,pagebreak,style,layer,table,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,searchreplace,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,advlist",
// Theme options
theme_advanced_buttons1: "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,formatselect,fontselect,fontsizeselect,|,bullist,numlist,|,undo,redo,|,code,preview,fullscreen,|,cleanup,help",
theme_advanced_buttons2: "cut,copy,paste,pastetext,|,insertdate,inserttime,|,link,unlink,anchor,image,|,forecolor,backcolor,|,search,replace",
theme_advanced_buttons3: "tablecontrols,|,hr,removeformat,visualaid,|,charmap,emotions,iespell",
theme_advanced_toolbar_location: "top",
theme_advanced_toolbar_align: "left",
theme_advanced_statusbar_location: "bottom",
theme_advanced_resizing: true,
relative_urls: false,
remove_script_host: false,
document_base_url: window.location.protocol + "//" + window.location.hostname,
external_link_list_url: window.location.protocol + "//" + window.location.hostname + "/Admin/Scripts/Lists/link_list.js",
external_image_list_url: window.location.protocol + "//" + window.location.hostname + "/Admin/Scripts/Lists/image_list.js"
};
if ($(applyTo).hasClass('editorLoaded') == false) {
try { // try to apply the editor, if fails it's because the scripts are not loaded, so load them!
$(applyTo).tinymce(tinyMceVars);
} catch (err) {
$.getScript("/Admin/Plugins/richEditor/jquery.tinymce.js", function () {
$(applyTo).tinymce(tinyMceVars);
});
} finally { // finally apply richEdit class to avoid re-writing and perform a callback if required
$(applyTo).removeClass('richEdit').addClass('editorLoaded');
if (callBack) {
callBack();
};
};
};
};