使用很简单
home.jsp:
<%@ 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">
<meta name="keywords" content="在线HMTL编辑器,kindedit">
<meta name="description" content="测试kindedit的在线HMTL编辑器">
<title>test for kindedit</title>
</head>
<body>
<h3>HTML编辑器</h3>
<textarea id="content3" name="content1" style="width:700px;height:300px;">
都是废话给你添烦恼
</textarea>
<script charset="utf-8" src="kindedit/kindeditor.js"></script>
<script language="javascript">
KE.show({
id : 'content3',
allowFileManager : true,
afterCreate : function(id) {
KE.util.focus(id);
}
});
</script>
</body>
</html>