IE9 TinyMCE ajax保存问题
我在一个页面中有几个标签,在其中一个标签中我有三个textareas(都包含TinyMCE)编辑器。
我使用ajax发布表单并保存值,然后重新显示从PartialViewResult返回的局部视图。
我正在使用TinyMCE的最新版本(3.5.8)。
第一次点击时,会保存textarea值。但当我第二次点击时,标签消失了,并给了我'SCRIPT70:权限被拒绝'。
错误发生在
的tiny_mce_src.js中 getBody : function() {
return this.bodyElement || this.getDoc().body;
}
我已经使用document.domain的=“本地主机”(在tiny_mce_src.js顶部书面)尝试过,它的工作原理,但只有一个文本区域转换成TinyMCE的编辑器,另两个作为遗体正确文本区域。
还试图将其设置为1(HKEY_LOCAL_MACHINE \ SOFTWARE \微软\的Internet Explorer \ MAIN \ FeatureControl \ FEATURE_OBJECT_CACHING \ IEXPLORE.EXE)
我发布表单和重新显示的代码如下。
$(".save").live("click", function () {
tinyMCE.triggerSave();
var f = $(this).parents("form");
var action = f.attr("action");
var serializedForm = f.serialize();
$.ajax({
type: 'POST',
url: action,
data: serializedForm,
async: false,
cache: false,
success: function (data, textStatus, request) {
// redisplay partial view
$("div.tab-pane.active").html(data);
window.scrollTo(0, 0);
InItTinyMCE();
},
error: function (req, status, error) {
alert("Error occurred!");
}
});
return false;
});
function InItTinyMCE() {
tinyMCE.init({
mode: "textareas",
cleanup: true
});
}
请帮忙。
答案 0 :(得分:3)
您可能必须正确重新初始化tinymce实例
要关闭编辑器实例,请使用:
tinymce.execCommand('mceRemoveControl',true,'your_editor_id');
重新初始化使用
tinymce.execCommand('mceAddControl',true,'your_editor_id');
答案 1 :(得分:0)
尝试使用模式:完全
$(window).ready(function() {
tinyMCE.init({
...
mode : "exact",
elements : "elm1,elm2"
});
})
.................
答案 2 :(得分:0)
add some line in Sizzle function in sizzle.js like this -
function Sizzle( selector, context, results, seed ) {
var match, elem, m, nodeType,
// QSA vars
i, groups, old, nid, newContext, newSelector;
try{
document === document; //may cause permission denied
}
catch(err){
document = window.document; //resets document, and no more permission denied errors.
}
if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {
setDocument( context );
}
//remaining code will be same
}