项目本身使用百度的ueditor编辑器,可免费集成外部调用135编辑器的方式来使用。也可申请与appkey,做到135用户绑定的方式,实现打开插件时免登录。使用非ueditor编辑器的,集成方式可,如有任何疑问可联系qq: 285694665,微信: hncszdb
将插件的两个文件下载到项目ueditor对应的目录里,并将135editor.js加载到自己的网页里(放在ueditor.all.min.js之后)
http://www.135editor.com/js/ueditor/plugins/135editor.js
view-source:http://www.135editor.com/js/ueditor/dialogs/135editor/135editordialogpage.html
//由于百度统计变更,影响直接触发“完成编辑”返回。老版本使用的用户,需要在135editordialogpage.html文件的40行增加一行代码。
window.addeventlistener('message', function (event) { if (typeof event.data !== 'string') return; // 增加此行代码 editor.setcontent(event.data); dialog.close(); }, false); |
在ueditor.config.js中toolbars项里增加一个135editor菜单项,
toolbars:[ ['bold','italic', 'underline', 'fontborder', 'strikethrough', '135editor','rowspacingtop', 'rowspacingbottom', 'lineheight','removeformat', 'formatmatch', 'autotypeset', 'blockquote', 'pasteplain', '|', 'forecolor', 'backcolor', 'insertorderedlist', 'insertunorderedlist', 'selectall', 'cleardoc', '|','superscript', 'subscript' ]], |
在自己的项目调用编辑器的网页里中增加一段css
完成上述3个步骤后,调用方式的插件就已经集成完毕了。可在下面的样例中体验。
-
请点击下方工具栏“135”的按钮来打开135编辑器,
-
唤起135编辑器后,在编辑区域排版内容,点击右侧“完成编辑”就会将所有内容自动返回到自己的编辑器里面。