码迷,mamicode.com
首页 > Web开发 > 详细

kindoreditor上传图片

时间:2015-04-10 13:24:14      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>ImageDialog Examples</title>
<link rel="stylesheet" href="../themes/default/default.css" />
<script src="../kindeditor.js"></script>
<script src="../lang/zh_CN.js"></script>
<script>
KindEditor.ready(function(K) {
var editor = K.editor({
allowFileManager : true
});
K(‘#image3‘).click(function() {
editor.loadPlugin(‘image‘, function() {
editor.plugin.imageDialog({
showRemote : false,
imageUrl : K(‘#url3‘).val(),
clickFn : function(url, title, width, height, border, align) {
K(‘#url3‘).val(url);
editor.hideDialog();
}
});
});
});
});
</script>
</head>
<body>

<p><input type="text" id="url3" value="" /> <input type="button" id="image3" value="选择图片" />(本地上传)</p>
</body>
</html>

我看着,kindeditor是使用ajax异步上传图片机制,返回上传文件路径,upload_json.php是原生的php上传代码,用着还可以。

kindoreditor上传图片

标签:

原文地址:http://www.cnblogs.com/liuwenbohhh/p/4414073.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!