程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php調用ckeditor?怎麼調用ckeditor

php調用ckeditor?怎麼調用ckeditor

編輯:關於PHP編程

怎麼調用ckeditor呢,下面小編來給大家總結一處利用php 調用ckeditor編輯器與js調用ckeditor的方法吧,其它腳本調用方法大致一樣了。

PHP調用FCKeditor 

將FCKeditor放在網站根目錄
在PHP文件裡面,包含/FCKeditor/ckeditor/" target="_blank">fckeditor.php文件

在網頁中需要放置該編輯器的地方插入下面代碼即可調用:

 代碼如下 復制代碼    <?php
    //包含fckeditor類
    include("fckeditor/fckeditor.php") ;
    //創建一個FCKeditor,表單名稱為 jzleditor
    $oFCKeditor = new FCKeditor("jzleditor");
    //設置編輯器路徑
    $oFCKeditor->BasePath = "fckeditor/";
    $oFCKeditor->ToolbarSet = "Default";//工具按鈕
    $oFCKeditor->Value =$cont; //;設置初始內容
    $oFCKeditor->Width="100%"; //設置它的寬度
    $oFCKeditor->Height="550px"; //設置它的高度
    $oFCKeditor->Create();
   ?>

輸入內容,提交後,在處理的文件中通過$_POST["jzleditor"]來取得輸入的內容

js調用FCKeditor 

CKEDITOR的使用很簡單,先download CKEDITOR 3.6.1(默認是PHP版的),然後在調用頁面的head中,寫下如下兩段js:

 代碼如下 復制代碼

<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
<script type="text/javascript">                                                                    window.onload = function()
        {
         CKEDITOR.replace( "content" );
        };

</script>

注意:這裡的content是<textarea>的名稱,如下所示:

<textarea name="content">ddd</textarea>如果是3.6.2版本,該語句可能要寫成:

<textarea name="content" class="ckeditor">ddd</textarea>

版本差異造成的問題,請大家在運行時注意這個問題。

在下一個頁面根據name值content獲取相應的值

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved