kindeditor使用入門-張國紅

kindeditor是在線編輯器,比較好用,以下是提供的使用這個插件的步驟。

專注于為中小企業(yè)提供成都網(wǎng)站建設(shè)、網(wǎng)站制作服務(wù),電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)明溪免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了近千家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。

下載kindeditor-4.1.10.zip

解壓

kindeditor使用入門-張國紅 

asp,asp.net,php對于jsp開發(fā)沒有用,可以刪除

新建web工程,拷貝文件

在WebRoot目錄下新建一個文件夾

kindeditor使用入門-張國紅 

這個文件夾是將來上傳圖片時用的,這是kindeditor默認的,當然也可以改,建議先按照這個文檔入了門后,再行修改。

和attached一樣,在WebRoot目錄下新建目錄kindeditor目錄,把上面解壓后的文件拷貝到這個目錄下。

kindeditor使用入門-張國紅 

需要把jsp目錄下的lib目錄下的jar包拷貝到WEB-INF/lib目錄下

kindeditor使用入門-張國紅 

修改index.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

<%

String path = request.getContextPath();

String basePath = request.getScheme() +"://"

+ request.getServerName() +":" + request.getServerPort()

+ path +"/";

%>

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

<html>

<head>

<base href="<%=basePath%>">

<title>My JSP 'index.jsp' starting page</title>

<meta http-equiv="pragma" content="no-cache">

<meta http-equiv="cache-control" content="no-cache">

<meta http-equiv="expires" content="0">

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

<meta http-equiv="description" content="This is my page">

<link rel="stylesheet" href="kindeditor/themes/default/default.css" />

<link rel="stylesheet" href="kindeditor/plugins/code/prettify.css" />

<script charset="utf-8" src="kindeditor/kindeditor.js"></script>

<script charset="utf-8" src="kindeditor/lang/zh_CN.js"></script>

<script charset="utf-8" src="kindeditor/plugins/code/prettify.js"></script>

<script>

KindEditor.ready(function(K) {

var editor1 = K.create('textarea[name="article.content1"]', {

cssPath :'kindeditor/plugins/code/prettify.css',

uploadJson :'kindeditor/jsp/upload_json.jsp',

fileManagerJson :'kindeditor/jsp/file_manager_json.jsp',

allowFileManager :true,

afterCreate :function() {

var self =this;

K.ctrl(document, 13,function() {

self.sync();

document.forms['example'].submit();

});

K.ctrl(self.edit.doc, 13,function() {

self.sync();

document.forms['example'].submit();

});

}

});

//prettyPrint();

});

</script>

</head>

<body>

<div id="container">

<div id="header">

</div>

<div id="mainContent">

<form name="example" method="post" action="servlet/MyServlet">

題目:

<input type="text" name="article.title">

<br />

內(nèi)容:

<textarea name="article.content1" cols="100" rows="8"></textarea>

<br />

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

</form>

</div>

</div>

</body>

</html>

kindeditor使用入門-張國紅 

新增servlet,接收index.jsp的提交

kindeditor使用入門-張國紅 

新增index2.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

<%

String path = request.getContextPath();

String basePath = request.getScheme() +"://"

+ request.getServerName() +":" + request.getServerPort()

+ path +"/";

%>

 

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

<html>

<head>

<base href="<%=basePath%>">

 

<title>My JSP 'index.jsp' starting page</title>

<meta http-equiv="pragma" content="no-cache">

<meta http-equiv="cache-control" content="no-cache">

<meta http-equiv="expires" content="0">

<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">

<meta http-equiv="description" content="This is my page">

<link rel="stylesheet" href="kindeditor/themes/default/default.css" />

<link rel="stylesheet" href="kindeditor/plugins/code/prettify.css" />

<script charset="utf-8" src="kindeditor/kindeditor.js"></script>

<script charset="utf-8" src="kindeditor/lang/zh_CN.js"></script>

<script charset="utf-8" src="kindeditor/plugins/code/prettify.js"></script>

<script>

KindEditor.ready(function(K) {

var editor1 = K.create('textarea[name="article.content1"]', {

cssPath :'kindeditor/plugins/code/prettify.css',

uploadJson :'kindeditor/jsp/upload_json.jsp',

fileManagerJson :'kindeditor/jsp/file_manager_json.jsp',

allowFileManager :true,

afterCreate :function() {

var self =this;

K.ctrl(document, 13,function() {

self.sync();

document.forms['example'].submit();

});

K.ctrl(self.edit.doc, 13,function() {

self.sync();

document.forms['example'].submit();

});

}

});

//prettyPrint();

});

</script>

</head>

<body>

<div id="container">

<div id="header">

</div>

<div id="mainContent">

<form name="example" method="post" action="servlet/MyServlet">

題目:

<input type="text" name="article.title" value="${title }">

<br />

內(nèi)容:

<textarea name="article.content1" cols="100" rows="8">${content }</textarea>

<br />

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

</form>

</div>

</div>

</body>

</html>

 

kindeditor使用入門-張國紅 

以上是簡單的入門測試。

 

新聞標題:kindeditor使用入門-張國紅
網(wǎng)站鏈接:http://muchs.cn/article2/ghhpic.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供搜索引擎優(yōu)化手機網(wǎng)站建設(shè)、定制網(wǎng)站、網(wǎng)站排名、微信小程序企業(yè)建站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

營銷型網(wǎng)站建設(shè)