嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在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)需要包含以下四个部分