Tag: richtextbox

Rails 3和jQuery网站的富文本格式(RTF)编辑器插件?

你使用哪种RTF编辑器? 我们使用的是Rails 3和jQuery,并希望实现一个低维护的RTF编辑器。 我们更喜欢使用第三方插件而不是从头开始构建。 你今天使用哪一个,有哪些优点/缺点?

jquery最小的富文本框插件

我正在寻找一个非常小的jQuery富文本框插件,用于我正在处理的Web应用程序。 用户只需要查看“文本框”,而不是任何工具栏,因为所有丰富的格式都将根据键入的内容进行编码。 我试图用iframe创建自己的,但有问题。 其中一个是在div中包装字符串时,插入符号被移动到开头,并且不能在没有单击的情况下移动到div中。 http://jsfiddle.net/DVjYa/ 这是一个问题,因为我需要它像普通文本框一样。 在普通文本框中,您可以使用箭头键导航而无需单击。 因此,为什么我在寻找已经克服了这些问题的插件。

有一个类似于gmail的开源javascript富文本编辑器吗?

我看过免费的javascript html编辑器,我还没有发现任何我觉得直观的句柄链接。 我喜欢gmail编辑器的方式(也就像blogger.com一样)。 有谁知道是否有一个开源编辑器处理这种方式的链接? Jquery会更好。

在textarea中建议/自动填充的jQuery插件

是否有一个jQuery插件在textarea中建议/自动填充? 我想要的是在textarea中为用户提供建议的单词或自动填充的文本,如下面的示例图片:

在CodeIgniter中实现TinyMCE的问题

我正在尝试在CodeIgniter中实现TinyMCE。 我创建了一个视图文件,并从控制器中调用它。 我已将所有文件上传到我的CI项目文件夹中,并显示了文件的路径。 但它没有用。 这是视图文件: Full featured example <script type="text/javascript" src="application/tinymce/jscripts/tiny_mce/tiny_mce.js”> tinyMCE.init({ // General options mode : “textareas”, theme : “advanced”, plugins : “autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist,autosave,visualblocks”, // Theme options theme_advanced_buttons1 : “save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect”, theme_advanced_buttons2 : “cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor”, theme_advanced_buttons3 : “tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen”, theme_advanced_buttons4 : “insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft,visualblocks”, theme_advanced_toolbar_location : “top”, theme_advanced_toolbar_align : “left”, theme_advanced_statusbar_location : “bottom”, theme_advanced_resizing : true, // Example content CSS […]