Is there a cross-browser jQuery contentEditable library? [closed]

大城市里の小女人 提交于 2019-12-04 19:33:10

问题


I'm looking for a jQuery plugin / library that makes the contentEditable attribute work properly in all major browsers (I could even go without IE6). I don't need a full WYSIWYG editor solution because I want to build my own – however I'm focusing on user experience so I'd prefer a "plug and play" solution.

I only need to access the editor features through code (API-like), I'm building the user interface myself.


回答1:


Aloha is a feature-complete and polished editor component using contentEditable. It uses jQuery UI.




回答2:


I ended up using WYSIHAT (http://37signals.com/svn/posts/1330-introducing-wysihat-an-eventually-better-open-source-wysiwyg-editor, https://github.com/37signals/wysihat).

It's Prototype-based (yeah, I know, not jQuery), but it's exactly the kind of "library" I needed. I can build my own toolbars and even own commands with ease.

jQuery can be integrated in .noConflict-mode.




回答3:


Tinymce allows you to build the interface yourself and is jquery compatible.

http://tinymce.moxiecode.com/tryit/jquery_plugin.php

If you desire to build everything yourself(like from scratch), there will probably be a lot of cross browser debugging needed. Some browsers like IE support exexCommand others don't and you now the typical javascript bugs that come with developing a library.

I would just delete what you don't need of off tinymce, if you want efficiency and speedy.



来源:https://stackoverflow.com/questions/6259112/is-there-a-cross-browser-jquery-contenteditable-library

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!