3

我正在codeigniter中构建一个Web应用程序,因为我需要集成tinymce,我尝试使用以下代码但它不工作可以有人说代码有什么问题

我创建了一个名为 tinymce.php 的视图页面

    <script type="text/javascript" src="<?php echo $base_url; ?>js/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
plugins : "safari,spellchecker,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,imagemanager,filemanager",

// 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,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,

// 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"
});
</script>

还添加了文本框以显示tinymce

    <form method="post" action="somepage">
<textarea name="content" style="width:100%">
</textarea>
</form>

然后尝试加载视图

$this->load->view('tinymce', base_url(), true);

该代码不仅可以工作,而且也不会显示我的文本区域。

4

3 回答 3

1

您的代码存在缺陷:

  1. $this->load->view() 在您仅传递 base_url 值时接受第二个参数作为数组。

  2. $this->load->view() 函数的第三个参数中的 true 不会将输出发送到浏览器,因此请将其留空。

  3. 确保您的 js 路径在下拉列表代码中是正确的,似乎您已将 js 放在应用程序内的视图文件夹中。

于 2013-01-19T08:25:44.403 回答
0

在视图文件本身中编写您的 javascript 代码。或者干脆把它写在单独的 js 文件(tinymce_properties.js)中,并在 tiny_mce.js 之后包含它

<script type="text/javascript" src="js/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript" src="js/tiny_mce/tinymce_properties.js"></script>

<form method="post" action="somepage">
<textarea name="content" style="width:100%">
</textarea>
</form>
于 2013-03-08T07:03:00.000 回答
0

确保您加载的所有插件都存在

试试这个 ->> plugins : 'advlist autolink link image listscharmap print preview',

如果它有效,那么您的声明中没有所有插件 ->> 插件:“safari,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media ,搜索替换,打印,上下文菜单,粘贴,方向性,全屏,不可编辑,visualchars,不间断,xhtmlxtras,模板,图像管理器,文件管理器",

于 2014-02-14T07:51:01.150 回答