1 Star 0 Fork 97

春宇/NKeditor

forked from RockYang/NKeditor 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.html 4.86 KB
一键复制 编辑 原始数据 按行查看 历史
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>NKeditor 在线编辑器 PHP demo</title>
<script charset="utf-8" src="NKeditor-all-min.js"></script>
<!-- 如果你不需要使用批量图片上传,涂鸦功能和文件管理功能,就不需要引入 jquery -->
<script charset="utf-8" src="libs/jquery.min.js"></script>
<!-- JDialog是一款优秀的漂亮,轻量级的js弹出框插件 不是必须引入的,如果不引入则使用默认的 window.alert() 来弹出提示信息 -->
<script charset="utf-8" src="libs/JDialog/JDialog.min.js"></script>
<script>
KindEditor.ready(function(K) {
K.create('textarea[name="content1"]', {
/**
* 七牛云上传 API
*/
uploadJson : K.basePath+'php/qiniu/upload_json.php',
fileManagerJson : K.basePath+'php/qiniu/file_manager_json.php',
imageSearchJson : K.basePath+'php/qiniu/image_search_json.php', //图片搜索url
imageGrapJson : K.basePath+'php/qiniu/image_grap_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();
});
},
//错误处理 handler
errorMsgHandler : function(message, type) {
try {
JDialog.msg({type:type, content:message, timer:2000});
} catch (Error) {
alert(message);
}
}
});
K.create('textarea[name="content2"]', {
/**
* 通用上传 API
*/
uploadJson : K.basePath+'php/default/upload_json.php',
fileManagerJson : K.basePath+'php/default/file_manager_json.php',
imageSearchJson : K.basePath+'php/default/image_search_json.php', //图片搜索url
imageGrapJson : K.basePath+'php/default/image_grap_json.php', //抓取选中的搜索图片地址
allowFileManager : true,
allowImageUpload : true,
allowMediaUpload : true,
themeType : "black", //主题
//错误处理 handler
errorMsgHandler : function(message, type) {
try {
JDialog.msg({type:type, content:message, timer:2000});
} catch (Error) {
alert(message);
}
}
});
K.create('textarea[name="content3"]', {
/**
* 通用上传 API
*/
uploadJson : K.basePath+'php/default/upload_json.php',
fileManagerJson : K.basePath+'php/default/file_manager_json.php',
imageSearchJson : K.basePath+'php/default/image_search_json.php', //图片搜索url
imageGrapJson : K.basePath+'php/default/image_grap_json.php', //抓取选中的搜索图片地址
allowFileManager : true,
allowImageUpload : true,
allowMediaUpload : true,
themeType : "grey", //主题
//错误处理 handler
errorMsgHandler : function(message, type) {
try {
JDialog.msg({type:type, content:message, timer:2000});
} catch (Error) {
alert(message);
}
}
});
K.create('textarea[name="content4"]', {
/**
* 通用上传 API
*/
uploadJson : K.basePath+'php/default/upload_json.php',
fileManagerJson : K.basePath+'php/default/file_manager_json.php',
imageSearchJson : K.basePath+'php/default/image_search_json.php', //图片搜索url
imageGrapJson : K.basePath+'php/default/image_grap_json.php', //抓取选中的搜索图片地址
allowFileManager : true,
allowImageUpload : true,
allowMediaUpload : true,
themeType : "blue", //主题
//错误处理 handler
errorMsgHandler : function(message, type) {
try {
JDialog.msg({type:type, content:message, timer:2000});
} catch (Error) {
alert(message);
}
}
});
});
</script>
</head>
<body>
<div style="padding-bottom: 100px; padding-left: 50px;">
<div style="">
<h1>七牛云上传 API 版(Default), 老版本 UI 的请移步 <a href="old.html" target="_blank">这里</a> </h1>
<form name="example" method="post">
<textarea name="content1" style="width:900px;height:200px;visibility:hidden;"></textarea>
</form>
</div>
<div style="">
<h1>通用php文件上传 API 版(Black)</h1>
<form name="example" method="post">
<textarea name="content2" style="width:900px;height:200px;visibility:hidden;"></textarea>
</form>
</div>
<div style="">
<h1>通用php文件上传 API 版(Grey)</h1>
<form name="example" method="post">
<textarea name="content3" style="width:900px;height:200px;visibility:hidden;"></textarea>
</form>
</div>
<div style="">
<h1>通用php文件上传 API 版(Blue)</h1>
<form name="example" method="post">
<textarea name="content4" style="width:900px;height:200px;visibility:hidden;"></textarea>
</form>
</div>
</div>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zhouchunnyu/kindeditor.git
git@gitee.com:zhouchunnyu/kindeditor.git
zhouchunnyu
kindeditor
NKeditor
master

搜索帮助