基本信息
源码名称:设计一个留言板系统,要求:留言使用CKEditor进行编辑
源码大小:2.17M
文件格式:.zip
开发语言:ASP
更新时间:2020-11-10
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
设计一个留言板系统,要求:留言使用CKEditor进行编辑
需要插入ckeditor包,运行无法提交时可更换浏览器使用


(1)edit.jsp

<%@ page pageEncoding="UTF-8"%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

  <head>

     <meta http-equiv="content-type" content="text/html; charset=UTF-8">

     <script type="text/javascript" src="ckeditor/ckeditor.js"></script>

  </head>

  <body>

     <form method="post" action="show.jsp"

          编辑公告内容<textarea class="ckeditor" cols="80" name="editor1" rows="10"></textarea>

          <input type="submit" value="提交" /> 

     </form>

  </body>

</html>

 

(2) show.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>显示公告内容</title>

</head>

<body>

<% request.setCharacterEncoding("UTF-8"); %>

   ${param.editor1}

</body>

</html>

 

(3) config.jsp

CKEDITOR.editorConfig = function( config )

{ config.width = 800;

 config.height = 400;

config.toolbar_Full = [

['Bold','Italic'],

['NumberedList','BulletedList','-','Outdent','Indent'],

['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],

['Styles','Format','Font','FontSize'],

['TextColor','BGColor']

];

};

(4)需要包含以下四个部分