我需要实现以下功能,
我一直在寻找tinymce和ckeditor。但是可以找到打开多个文件和下载功能的任何解决方案。任何起点都会有所帮助。
下面是一些来自tinymce的示例代码,这里如何动态填充textarea内容,点击自定义导入按钮?
HTML代码:
<textarea>
<h1 style="text-align: center;">Welcome to the WYSIWYG editor demo!</h1>
<p>Right now import button does not work</p>
</textarea>
JS代码:
tinymce.init({
selector: 'textarea',
height: 500,
toolbar: 'importbtn',
menubar: false,
setup: function (editor) {
editor.addButton('mybutton', {
text: 'Import',
icon: false,
onclick: function () {
editor.insertContent(' <b>This is suppose to import a file</b> ');
}
});
}
});
提前致谢