<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>KindEditor demo</title>
</head>
<body>
<textarea name="editor" style="width:700px;height:100px;"></textarea>
<!-- 编辑器源码文件 -->
<script src="https://cdn1.box3.cn/assets/kindeditor/4.1.12/kindeditor-all-min.js"></script>
<!-- 实例化编辑器 -->
<script type="text/javascript">
KindEditor.ready(function(K) {
window.editor = K.create('textarea', {
allowFileManager : true,
langType : 'zh-CN',
autoHeightMode : true
});
// 获取编辑器内容
//window.editor.html()
// 修改编辑器内容
// window.editor.html("新内容")
});
</script>
</body>
</html>
|