爲什麼特別CKEditor Version 4.2
?隨機問題。
如果你可以使用其他豐富的文本編輯器,那麼我想建議tinyMCE。
下面的代碼我使用實現了tinyMCE。
<script type="text/javascript">
tinyMCE.init({
// General options
mode : "exact",
elements : "ta1",
theme : "advanced",
plugins : "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,advlist",
inlinepopups_skin: "themepixels",
// Theme options
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,outdent,indent,blockquote,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "pastetext,pasteword,|,bullist,numlist,|,undo,redo,|,link,unlink,image,help,code,|,preview,|,forecolor,backcolor,removeformat,|,charmap,media,|,fullscreen",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
skin : "themepixels",
// Example content CSS (should be your site CSS)
content_css : "<?php echo $this->module->assetsUrl; ?>/css/plugins/tinymce.css",
// Drop lists for link/image/media/template dialogs
template_external_list_url : "js/template_list.js",
external_link_list_url : "js/link_list.js",
external_image_list_url : "js/image_list.js",
media_external_list_url : "js/media_list.js",
// Replace values for the template plugin
template_replace_values : {
username : "Some User",
staffid : "991234"
}
});
</script>
請點擊此鏈接瞭解更多詳情。
請注意,CKEditor不包含在此擴展中,您可以從其官方網站下載CKEditor,並在您的應用程序中使用此擴展。 –
我知道,謝謝 –