用kindeditor上传图片出错

控制台大给出的错误信息是:
zh-CN.js:1Uncaught SyntaxError: Unexpected token <
是js的问题吗?求大虾帮忙
创建的代码如下:
KindEditor.ready(function (K) {
var options = {
width:'100%',
height:'500px',
cssPath :'__ROOT__/js/kindeditor/plugins/code/prettify.css',
uploadJson : '__ROOT__/js/kindeditor/upload_json.php',
fileManagerJson : '__ROOT__/js/kindeditor/file_manager_json.php',
allowImageUpload:true,//允许上传图片
allowFileManager:true, //允许对上传图片进行管理
items: [
'source', '|', 'undo', 'redo', '|', 'preview', 'template', 'code', 'cut', 'copy', 'paste',
'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',
'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',
'superscript', 'quickformat', 'selectall', '|',
'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold',
'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|', 'image', 'multiimage',
'insertfile', 'table', 'hr', 'emoticons', 'pagebreak', 'link', 'unlink'
],
autoHeightMode : true, //启用编辑区自动高度
afterChange : function () { //输入文字事件
var autoheight = K.IE ? this.edit.doc.body.scrollHeight : this.edit.doc.body.offsetHeight; //判断是否是IE,并获取内容高度。
this.edit.setHeight(autoheight); //设置高度
},
afterCreate : function() {
this.sync();
},
afterBlur:function(){
this.sync();
}
};
var zh_edit = K.create('#content', options);
})

找到错误了是这个zh-CN.js名字的问题:
官方给的是demo里面写的是:'zh_CN.js'
实际js的名字叫zh-CN.js
都怪自己懒直接复制

http://www.oschina.net/question/1013265_2163809

找到错误了是这个zh-CN.js名字的问题:
官方给的是demo里面写的是:

实际js的名字叫zh-CN.js

都怪自己懒直接复制