私は、テキストエリアに「oninitを」オプションを使用して働いていた:
oninit: function(editor) {
$currentTextArea.closest('form').bind('submit, invalid', function() {
editor.save();
});
}
をあなたがのonChangeイベントを使用しようとすることができ、それがFirefoxで正しく動作しません。
私の完全なコード:
$('textarea.tinymce').each(function(){
var options = {
theme : "advanced",
skin : "cirkuit",
plugins : "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template", theme_advanced_buttons1 :"formatselect,fontsizeselect,forecolor,|,bold,italic,strikethrough,|,bullist,numlist,|,justifyleft,justifycenter,justifyright,|,link,unlink,|,spellchecker",
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
theme_advanced_buttons4 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true
},
$this = $(this);
// fix TinyMCE bug
if ($this.is('[required]')) {
options.oninit = function(editor) {
$this.closest('form').bind('submit, invalid', function() {
editor.save();
});
}
}
$this.tinymce(options);
});
解決策が見つかりましたか?これは:http://www.tinymce.com/develop/bugtracker_view.php?id=5671はうんざりです。今は未だ解決されていないようだ。 – Leah
@Leahあなたのリンクは機能していません。私はGitHubにリダイレクトされており、#5671の問題はありません。 – naXa
@naXa心配しないでください。そのコメント/リンクを投稿してから1年が経過しています。すでに削除されている可能性があります。とにかくお返事いただきありがとうございます。 – Leah