Tag: 文本编辑器

任何就地Javascript富文本编辑器可用吗?

JS中是否有任何支持Rich Text的就地编辑器,如TinyMCE / FCKEditor? 例如就地编辑(非富文本): http : //www.appelsiini.net/projects/jeditable/default.html

在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 […]