ueditor编辑器
Posted xiaz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ueditor编辑器相关的知识,希望对你有一定的参考价值。
将编辑器作为用户控件 <ty_ctl:UEditor ID="UEditor_Content
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="UEditor.ascx.cs" Inherits="Topevery.OA.Web.UserControl.UEditor" %> <!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <!-- 配置文件 --> <script type="text/javascript" src="/xcoa/js/ueditor/ueditor.config.js"></script> <!-- 编辑器源码文件 --> <script type="text/javascript" src="/xcoa/js/ueditor/ueditor.all.min.js"></script> <script type="text/javascript" src="/xcoa/js/ueditor/ueditor.js"></script> </head> <body> <div> <script id="editor" type="text/plain" style="height: 300px; width: 650px;"></script> </div> <!-- 加载编辑器的容器 --> <script id="container" name="content" type="text/plain"> </script> <script type="text/javascript"> //实例化编辑器 //建议使用工厂方法getEditor创建和引用编辑器实例,如果在某个闭包下引用该编辑器,直接调用UE.getEditor(‘editor‘)就能拿到相关的实例 var ue = UE.getEditor(‘editor‘); ue.setDisabled = function () { UE.getEditor(‘editor‘).setDisabled(‘fullscreen‘); } </script> </body> </html>
" runat="server" />
以上是关于ueditor编辑器的主要内容,如果未能解决你的问题,请参考以下文章
百度UEditor编辑器源代码编辑模式用CSS会被转义,有解决方法吗