标签:style blog http io ar sp div on 2014
//获取编辑器对象,wp中的编辑器ID是"content"
var editor = tinymce.get(‘content‘);
//获取编辑器内容
var content = editor.getContent();
//更改编辑器内容
content = content+"通过JS更改编辑器内容.";
//将内容保存到编辑器
editor.setContent(content);
标签:style blog http io ar sp div on 2014
原文地址:http://www.cnblogs.com/huangtailang/p/4069964.html