我正在尝试为我的 textarea使用最新的 tiny mce - TinyMCE 3.5b3 jQuery package的 jquery 版本。我创建了一个弹出窗口来加载表单,这就是问题所在 - 第一次加载后,如果再次单击相同的加载弹出按钮,ajaxload
将中断。
这是查看我的意思的链接。
但是,我用另一个load
没有弹出窗口的 ajax 进行了测试,然后 jquery ajax 就可以正常工作了。
jQuery,
$('.button-popup').click(function(){
var object = $(this);
// Remove any previous popup first.
$(".popup").remove();
// Now prepend a fresh popup.
$(document.body).prepend("<div id='popup-edit' class='popup'></div>");
// Load the content into the popup.
$('#popup-edit').load('full.html', {}, function(){
$('#binder-form').prepend("<div class='close'><a href='#' class='button-close'> x close </a></div>");
$('#binder-form').css({
padding:"20px",
backgroundColor:"#ffffff"
});
$('textarea.tinymce').get_tinymce();
$('form *[title]').inputHints();
$('.button-submit').submit_form();
$('.close').click(function(){
$('.popup').fadeOut('fast',function(){
//$(this).remove();
});
return false;
});
});
return false;
});
$('.button').click(function(){
$('.content').load('full.html', function() {
$('textarea.tinymce').get_tinymce();
$('form *[title]').inputHints();
$('.button-submit').submit_form();
});
return false;
});
的插件$('textarea.tinymce').get_tinymce();
在jsfiddle中。