问题
Was wondering if anyone knows a good alternative to tinymce? I find that it sometimes has problems with AJAX infused content. And I've noticed that it seems a little slow when loading - I first see the textarea with the HTML-Markup and then it flashes and then I see the tiny interface.
wmd and markitup are not exactly what I am looking for - they are too rudimentary.
Is there any other good lightweight Javascript WYSIWYG Editor out there?
Thanks Casper
回答1:
What about FCKeditor?
回答2:
CKEditor the new FCKEditor
回答3:
Attacklab is used by StackOverflow, and myself soon enough. It's WYSIWYM, but still quite useful.
In the past, I have used YUI Rich Text Editor. There's actually two versions, one more basic than the other.
回答4:
PunyMCE is a newer contender by the same guys that make TinyMCE. It's super lightweight and supports the important requirements of being themeable, plugin capable, and supports internationalization.
回答5:
FCKEditor is quite good, you can try that.
回答6:
peirix's comment was helpful.
Tried a couple of the suggested ones and apparently Tiny or FCK are the best of the crop.
--EDIT-- I found and liked: http://markitup.jaysalvat.com/
--EDIT 2012-- I have now moved back to a minimal/light weight tinyMCE installation using jQuery.
回答7:
Personally my favorite as of late has been Quill. Cleaner interface, simple documentation and overall cleaner code.
Here is their quick start:
var quill = new Quill('#editor', {
theme: 'snow'
});
<!-- Include stylesheet -->
<link href="https://cdn.quilljs.com/1.3.4/quill.snow.css" rel="stylesheet">
<!-- Create the editor container -->
<div id="editor">
<p>Hello World!</p>
<p>Some initial <strong>bold</strong> text</p>
<p><br></p>
</div>
<!-- Include the Quill library -->
<script src="https://cdn.quilljs.com/1.3.4/quill.js"></script>
Website: https://quilljs.com/
Here is their playground: https://quilljs.com/playground/
Finally, they do a great job of comparing themselves to other editors.
CKEditor, TinyMCE, Draft, ProseMirror and Trix: https://quilljs.com/guides/comparison-with-other-rich-text-editors/
来源:https://stackoverflow.com/questions/1164765/alternative-to-tiny-mce