简体   繁体   中英

Alternative to Tiny MCE

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

FCKeditor怎么样?

CKEditor新的FCKEditor

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.

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.

FCKEditor非常好,你可以试试。

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.

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/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM