What is the easiest-to-use web “rich text editor”

2019-03-11 07:57发布

I am looking for a text editor to be used in a web page. Where users can format the text and get a WYSIWYG experience. Doesn't need to be too fancy. But has to be easy to use and integrate into the page. Has to generate HTML as output. Support AJAX (one I checked works only with standard form submit) and has to be small in terms of download to the user's browser.

标签: html editor
9条回答
放我归山
2楼-- · 2019-03-11 08:27

TinyMCE is the simplest I've found to use. I've never used it in an AJAX-enabled application, but there are instructions on how to do so on the project's wiki.

查看更多
倾城 Initia
3楼-- · 2019-03-11 08:27

For something minimalist, take a look at Widg Editor, it's truly tiny and very simple. It's only haphazardly supported as a hobby project though.

I'm currently using the RTE component of DynarchLib, which is highly customisable - definitely does AJAX - but a bit complicated and not very pretty. It is actively supported, and you can get answers on their forum very quickly.

I previously tried Dojo's editor, and found it broken and badly undocumented. YMMV.


Edit: In response to other people's answers, I've now tried TinyMCE and found it to be excellent. More easily configurable and far fewer problems than anything else I've tried. Use TinyMCE!

查看更多
欢心
4楼-- · 2019-03-11 08:30

You might also want to look at YUI's Rich Text Editor.

If you're starting your site from scratch or haven't invested a lot of effort into another JavaScript platform, Yahoo User Interface (YUI) is a very complete JavaScript library that could help you add other AJAX elements beyond a text editor.

查看更多
看我几分像从前
5楼-- · 2019-03-11 08:33

i started out using free text box when i was doing a lot of asp.net programming, but now that most of what i do is php i've moved to the FCK editor.

while the change wasn't necessarily prompted by the language, i feel that the fck editor is a better choice because of it's versatility.

查看更多
Fickle 薄情
6楼-- · 2019-03-11 08:36

I just did a full day of evaluation of all the ones mentioned so far (and then some), and the one I liked the best is Obout Editor. I think it might be for ASP.NET only, so it might not work for you, but if you are using .NET, it's great. The HTML output is clean and nicely styled, and the rendered output looks the same in the editor as it does when you output it to the page (something I had trouble with when using the others due to doctype settings in the editor). It costs a few bucks, but it was worth it for us.

查看更多
三岁会撩人
7楼-- · 2019-03-11 08:38

Try FCKeditor. It supports integration with most popular platforms, and it's fairly lightweight.

查看更多
登录 后发表回答