码迷,mamicode.com
首页 > Web开发 > 详细

页面可视化编辑ckeditor(web基础学习笔记十五)

时间:2015-01-30 01:22:05      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

一、CKedit下载ckedit

下载地址:http://ckeditor.com/

二、ckedit的引入

2.1、解压并将ckedit复制到项目中

技术分享

2.2、在页面中引入

在页面头部加入

<script type="text/javascript" src="<%=request.getContextPath()%>/ckeditor/ckeditor.js"></script>

2.3、在需要使用ckedit的标签中添加class="ckeditor"

多行文本域添加class

tr>
    <td>内容</td>
    <td>
    <textarea id="newscontent" name="newscontent" class="ckeditor" rows="8"></textarea>
    </td>
</tr>

2.4、页面全部代码

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="<%=request.getContextPath()%>/ckeditor/ckeditor.js"></script>
<title>Insert title here</title>
</head>
<body>
<table >
<tr>
    <td>标题</td>
    <td><input type="text" name="title" value=""/></td>
</tr>
<tr>
    <td>内容</td>
    <td>
    <textarea id="newscontent" name="newscontent" class="ckeditor" rows="8"></textarea>
    </td>
</tr>
</table>

</body>
</html>

2.5、页面效果

技术分享

 

页面可视化编辑ckeditor(web基础学习笔记十五)

标签:

原文地址:http://www.cnblogs.com/liunanjava/p/4261368.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!