操作系统: Windows XP
浏览器: IE8
KindEditor版本: 4.0.1
BUG再现步骤:
点击 "选择上传按钮" 弹出选择上传对话框时,如果点击右上角X按钮时关闭对话框的时就会报错或点击取消按钮时也会出现同样情况。不知道是我的代码写错还是有bug?
错误提示:'self.cmd' 为空或不是对象
浏览器: IE6,IE7
点击 "选择上传按钮" 没有任何反应
错误提示:缺少标识符、字符串或数字
这是我测试的代码
<!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,
uploadJson : '../asp/upload_json.asp',
fileManagerJson : '../asp/file_manager_json.asp',
});
K('#image').click(function() {
editor.loadPlugin('image', function() {
editor.plugin.imageDialog({
clickFn : function(url, title, width, height, border, align) {
K('#url').val(url);
K('#photo').attr('src',url);
editor.hideDialog();
}
});
});
});
});
</script>
</head>
<body>
<img src="" id="photo" alt="">
<input type="text" id="url" value="" /> <input type="button" id="image" value="选择图片" />
</body>
</html>
期望结果: 尽快解决问题!