我有一个 ID 为“文章”的文本区域。
这是我的js中的内容:
tinyMCE.init({
theme : "advanced",
mode : "textareas",
plugins : "fullpage",
theme_advanced_buttons3_add : "fullpage"
});
并获取编辑器的内容:
var content = tinyMCE.get('article').getContent();
alert(content);
但它似乎不起作用,任何想法我哪里出错了?