這是我保存的功能。我很想弄清楚如何做一個淡出的消息,而不是一個警報。 (從未發佈代碼之前,所以我希望它的工作原理)
(function() {
var saveCmd = { modes:{wysiwyg:1,source:1 },
exec: function(editor) {
var $form = editor.element.$.form;
if ($form) {
try {
$.ajax({
type: "POST",
url: (window.location.href),
data: {editpage:'savechanges',
pagecontent:editor.getData()},
cache: false,
success: function(){
editor.resetDirty();
alert("Edits saved.");
}
});
} catch (e) {
// If there's a button named "submit" then the form.submit
// function is masked and can't be called in IE/FF, so we
// call the click() method of that button.
// if ($form.submit.click) $form.submit.click();
}
}
}
};
var pluginName = 'save';
// Register a plugin named "save".
CKEDITOR.plugins.add(pluginName, {
lang: 'af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en-au,en-ca,en-gb,en,eo,es,et,eu,fa,fi,fo,fr-ca,fr,gl,gu,he,hi,hr,hu,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt-br,pt,ro,ru,sk,sl,sr-latn,sr,sv,th,tr,ug,uk,vi,zh-cn,zh', // %REMOVE_LINE_CORE%
icons: 'save', // %REMOVE_LINE_CORE%
init: function(editor) {
// Save plugin is for replace mode only.
if (editor.elementMode != CKEDITOR.ELEMENT_MODE_REPLACE)
return;
var command = editor.addCommand(pluginName, saveCmd);
command.modes = { wysiwyg: !!(editor.element.$.form), source: 1 };
editor.ui.addButton && editor.ui.addButton('Save', {
label: editor.lang.save.toolbar,
command: pluginName,
toolbar: 'main,10'
});
}
});
})();
你在這方面有什麼進展?我正在嘗試驗證並保存。你將如何處理錯誤? – chrislovecnm