今天一個客戶要求在編輯器裡增加可以拖動圖片的方法,研究了很久,發現這幾種編輯器只有在ie下才可以拖動圖片大小,包括網易用的編輯器,QQ空間的編輯器,先提前聲明一下。下面進入重點
1.百度編輯器ueditor
先建立項目,產生以後在目錄下建立一個plugins檔案夾
650) this.width=650;" src="http://www.bkjia.com/uploads/allimg/131228/1134413924-0.jpg" title="QQ20130708170940.jpg" />
然後下載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
2.kindeditor
:http://www.kindsoft.net/down.php
解壓改名放到plugins下,
在模版裡添加
<script charset="utf-8" src="/edit/plugins/kindeditor/kindeditor.js"></script><script charset="utf-8" src="/edit/plugins/kindeditor/lang/ko.js"></script><script> KindEditor.ready(function(K) { window.editor = K.create('#editor_id'); });
<textarea id="myEditor" name="content" style="width:700px;height:300px;"></textarea>
顯示的樣式,自然就是51cto部落格編輯器的樣子了。
3.xheditor ,號稱最乾淨整潔的線上編輯器
:http://xheditor.com/download
複製到plugins下改名
在需要的模版中添加
<script type="text/javascript" src="/edit/plugins/xheditor/jquery/jquery-1.4.4.min.js"></script><script type="text/javascript" src="/edit/plugins/xheditor/xheditor-1.1.14-zh-cn.js"></script>
<textarea name="content" class="xheditor"></textarea>
即可,剩下的就是和後端的處理了。
一般我就比較喜歡使用這三種編輯器,而且各有特點,現在不喜歡fckeditor了,外觀不美觀,而且上傳之類的,容易出問題,包括有上傳漏洞。就不說了。有興趣的朋友可以加群:252799167一起學習進步
本文出自 “尛雷” 部落格,請務必保留此出處http://a3147972.blog.51cto.com/2366547/1243384