我的文字区域的ID为“文章”。
以下是我的js:
tinyMCE.init({
theme : "advanced",
mode : "textareas",
plugins : "fullpage",
theme_advanced_buttons3_add : "fullpage"
});
获取编辑器的内容:
var content = tinyMCE.get('article').getContent();
alert(content);
但它似乎不起作用,任何我出错的想法?
答案 0 :(得分:4)
tinyMCE.activeEditor.getContent()
答案 1 :(得分:2)
尝试遵循此fiddle它可以帮助您搞清楚......
tinyMCE.init({
theme : "advanced",
mode : "textareas",
plugins : "fullpage",
theme_advanced_buttons3_add : "fullpage"
});
获取内容的功能
function get_content() {
var content = tinyMCE.get('article').getContent();
alert(content);
}
<textarea name="article">
//content here
</textarea>
点击按钮获取编辑器的内容......
<button onclick="get_content()">Get content</button>