>  기사  >  데이터 베이스  >  取出客户端卸载CKEditor中的内容,放入数据库中的方案

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

WBOY
WBOY원래의
2016-06-07 15:06:311168검색

一、客户端: !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);
    }

 

 

 

另外:

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'] 
    ]; 
}; 
 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.