zoukankan      html  css  js  c++  java
  • 富文本的使用

    asp.net

    <%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>


    <div style=" 100%; height: 40px;">
    <iframe src="/pages/common/uploadPic.aspx?type=<%=Yph.Crm.Common.Enum.ESourceType.fromTempPic %>&editor=<%=Descirption.ClientID %>&id=0"
    scrolling="no" frameborder="0" height="40" width="400"></iframe>
    </div>
    <CKEditor:CKEditorControl ID="Descirption" runat="server" Width="100%" Height="350px" TemplatesFiles="/js/common/ckeditor/plugins/templates/templates/default.js" onchange="unloadcheck=true;"></CKEditor:CKEditorControl>

    ///获取富文本的值

      var Content = CKEDITOR.instances.ctl00_MainContent_Descirption.getData().trim();

    default.js{

    CKEDITOR.addTemplates('default',{imagesPath:CKEDITOR.getUrl(CKEDITOR.plugins.getPath('templates')+'templates/images/'),templates:[{title:'Image and Title',image:'template1.gif',description:'One main image with a title and text that surround the image.',html:'<h3><img style="margin-right: 10px" height="100" width="100" align="left"/>Type the title here</h3><p>Type the text here</p>'},{title:'Strange Template',image:'template2.gif',description:'A template that defines two colums, each one with a title, and some text.',html:'<table cellspacing="0" cellpadding="0" style="100%" border="0"><tr><td style="50%"><h3>Title 1</h3></td><td></td><td style="50%"><h3>Title 2</h3></td></tr><tr><td>Text 1</td><td></td><td>Text 2</td></tr></table><p>More text goes here.</p>'},{title:'Text and Table',image:'template3.gif',description:'A title with some text and a table.',html:'<div style=" 80%"><h3>Title goes here</h3><table style="150px;float: right" cellspacing="0" cellpadding="0" border="1"><caption style="border:solid 1px black"><strong>Table title</strong></caption></tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr></table><p>Type the text here</p></div>'}]});}

  • 相关阅读:
    asyncio异步IO--协程(Coroutine)与任务(Task)详解
    python爬虫实战:利用scrapy,短短50行代码下载整站短视频
    深入理解Git的实现原理
    Upsource 代码审查工具安装及使用
    MAC MAMP集成环境安装 PHP 扩展
    千万数据量数据表分表实践
    设计模式:序言
    设计模式 行为型
    PHP5底层原理之变量
    PHP5底层原理之垃圾回收机制
  • 原文地址:https://www.cnblogs.com/lp73/p/6644329.html
Copyright © 2011-2022 走看看