1 Star 0 Fork 6

学习奋斗/KindEditor 优化版

forked from aget/KindEditor 优化版 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.html 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
jayter2 提交于 2023-09-22 23:51 . 弹层兼容手机模式
<!doctype html>
<html>
<head>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<meta charset="utf-8" />
<title>KindEditor Main Test</title>
<link rel="stylesheet" href="./themes/default/default.css" />
<!-- <script src="./jquery.min.js"></script> -->
<script src="./kindeditor-src.js"></script>
</head>
<body>
<div id="content"></div>
<script>
KindEditor.ready(function (K) {
var editor = K.create('#content', {
minHeight: 380,
allowMediaUpload: true,
allowMediaSize: 50, //限制媒体上传50M
allowFileManager: false,
allowMediaSize: 10, //限制视频文件上传10M
allowFileSize: 10, //限制文件上传10M
allowImageSize: 5, //限制图片上传5M
uploadJson: './php/testdata.php?act=upload', //上传接口
filePostName: 'file',
maxWidth:900,
maxHeight:1200,
afterUpload: function (url,res,uploadType) {
console.log('afterUpload',uploadType,res);
}
});
});
</script>
<p><a href="./test/">更多测试...</a></p>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/ahanflw_admin/kindeditor.git
git@gitee.com:ahanflw_admin/kindeditor.git
ahanflw_admin
kindeditor
KindEditor 优化版
master

搜索帮助