程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> 在ThinkPHP整合各種在線編輯器

在ThinkPHP整合各種在線編輯器

編輯:PHP綜合

今天一個客戶要求在編輯器裡增加可以拖動圖片的方法,研究了很久,發現這幾種編輯器只有在ie下才可以拖動圖片大小,包括網易用的編輯器,QQ空間的編輯器,先提前聲明一下。下面進入重點

1.百度編輯器ueditor

先新建項目,生成以後在目錄下新建一個plugins文件夾

然後下載ueditor,地址:http://ueditor.baidu.com/website/download.html,注意編碼。下載以後解壓將整合文件夾放到plugins裡,並且改名為ueditor

將項目名/Lib/Action/IndexAction.clas.php添加

class IndexAction extends Action {
    function index(){
        $this->display();
    }
}

然後在對應的模版裡添加,在<head></head>中間添加

<script type="text/javascript" src="/edit/plugins/ueditor/ueditor.config.js"></script>
<script type="text/javascript" src="/edit/plugins/ueditor/ueditor.all.js"></script>

在需要的地方添加

<textarea id="myEditor" name="content" style="width:700px;height:300px;">
</textarea>
<script type="text/javascript">
    UE.getEditor('myEditor')
</script>

這是textera的方式,也可以用div,p都可以,官方推薦的是

<script type="text/plain" id="myEditor">
    //從數據庫中取出文章內容打印到此處
</script>
toolbars:[
            ['fullscreen', 'source', '|', 'undo', 'redo', '|',
                'bold', 'italic', 'underline', 'fontborder', 'strikethrough', 'superscript', 'subscript', 'removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'selectall', 'cleardoc', '|',
                'rowspacingtop', 'rowspacingbottom', 'lineheight', '|',
                'customstyle', 'paragraph', 'fontfamily', 'fontsize', '|',
                'directionalityltr', 'directionalityrtl', 'indent', '|',
                'justifyleft', 'justifycenter', 'justifyright', 'justifyjustify', '|', 'touppercase', 'tolowercase', '|',
                'link', 'unlink', 'anchor', '|', 'imagenone', 'imageleft', 'imageright', 'imagecenter', '|',
                'insertimage', 'emotion', 'scrawl', 'insertvideo', 'music', 'attachment', 'map', 'gmap', 'insertframe','insertcode', 'webapp', 'pagebreak', 'template', 'background', '|',
                'horizontal', 'date', 'time', 'spechars', 'snapscreen', 'wordimage', '|',
                'inserttable', 'deletetable', 'insertparagraphbeforetable', 'insertrow', 'deleterow', 'insertcol', 'deletecol', 'mergecells', 'mergeright', 'mergedown', 'splittocells', 'splittorows', 'splittocols', '|',
                'print', 'preview', 'searchreplace', 'help']
        ]

看需要刪除即可。

最近百度網盤有個活動,如果有興趣的朋友可以參加一下,還有個人收集的一些書籍

http://pan.baidu.com/share/link?shareid=3950160737&uk=3826886292

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