1 Star 3 Fork 97

Swifly / NKeditor

forked from RockYang / NKeditor 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
old.html 1.50 KB
一键复制 编辑 原始数据 按行查看 历史
cyf783 提交于 2020-02-11 10:49 . table 仿ueditor 取自 zui
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>NKeditor 在线编辑器 PHP demo</title>
<link href="libs/bootstrap/bootstrap.min.css" rel="stylesheet">
<script charset="utf-8" src="libs/jquery.min.js"></script>
<script charset="utf-8" src="NKeditor-all.js"></script>
<!-- 下面是外部插件不是必须引入的 -->
<script charset="utf-8" src="libs/JDialog/JDialog.min.js"></script>
<script>
KindEditor.ready(function(K) {
K.create('textarea[name="content1"]', {
uploadJson : K.basePath+'php/qiniu/upload_json.php',
fileManagerJson : K.basePath+'php/qiniu/file_manager_json.php',
dialogOffset : 0, //对话框距离页面顶部的位置,默认为0居中,
allowFileManager : true,
allowImageUpload : true,
allowMediaUpload : true,
afterCreate : function() {
var self = this;
K.ctrl(document, 13, function() {
self.sync();
K('form[name=example]')[0].submit();
});
K.ctrl(self.edit.doc, 13, function() {
self.sync();
K('form[name=example]')[0].submit();
});
},
themeType : "default", //主题
//错误处理 handler
errorMsgHandler : function(message, type) {
try {
JDialog.msg({type:type, content:message, timer:2000});
} catch (Error) {
alert(message);
}
}
});
});
</script>
</head>
<body>
<form name="example" method="post" style="margin-top: 20px;">
<textarea name="content1" style="width:900px;height:500px;visibility:hidden;"></textarea>
</form>
</body>
</html>
JavaScript
1
https://gitee.com/cyf783/NKeditor.git
git@gitee.com:cyf783/NKeditor.git
cyf783
NKeditor
NKeditor
master

搜索帮助