取出客户端卸载CKEditor中的内容,放入数据库中的方案

php中文网
发布: 2016-06-07 15:06:31
原创
1427人浏览过

一、客户端: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/xhtml head runat=server title无标题页/title script type=text/javascript src=

一、客户端: 



    无标题页
   
 

   

  
   

     
                         

       

   

    
     <script><br> document.getElementById("content").value=CKEDITOR.instances.editor1.getData(); <br> </script>

   
   




二、服务器端得到:

 protected void Page_Load(object sender, EventArgs e)
    {
      
        Response.Write(content.Value);
    }

 

AppStruct
AppStruct

无代码应用开发平台

AppStruct 132
查看详情 AppStruct

 

 

另外:

ckeditor文件夹中的config.js文件

/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/ 
 
CKEDITOR.editorConfig = function( config ) 

    // Define changes to default configuration here. For example: 
    // config.language = 'fr'; 
    // config.uiColor = '#AADC6E'; 
    config.language = 'zh-cn'; // 配置语言 
    config.uiColor = '#FFF'; // 背景颜色 
    config.width = 'auto'; // 宽度 
    config.height = '300px'; // 高度 
    config.skin = 'office2003';// 界面v2,kama,office2003 
    config.toolbar = 'MyToolbar';// 工具栏风格(基础'Basic'、全能'Full'、自定义)plugins/toolbar/plugin.js 
    config.toolbarCanCollapse = false;// 工具栏是否可以被收缩 
    config.resize_enabled = false;// 取消 “拖拽以改变尺寸”功能 plugins/resize/plugin.js 
     
    //自定义的工具栏     
    config.toolbar_MyToolbar = 
    [ 
        ['Source','-','Save','Preview','Print'], 
        ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Scayt'], 
        ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], 
        ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'], 
        '/', 
        ['Styles','Format'], 
        ['Bold','Italic','Strike'], 
        ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'], 
        ['Link','Unlink','Anchor'], 
        ['Maximize','-','About'] 
    ]; 
}; 
 

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号