1、mvc一般在BundleConfig.cs中全局绑定引入jq,所以只引入ckfinder.js
<script src="~/plugins/ckfinder/ckfinder.js"></script>
在plugins下拷贝ckfinder就可以
2、因为用了jQuery所以也引了下,写原生js也很简单。
下面是主要js代码:
/**
* 通过ckfinder独立上传文件或图片
*/
//初始化ckfinder
var finder = new CKFinder();
finder.basePath = '~/plugins/ckeditor/'; //此路径为CKFinder的安装路径,默认为 (default = "/ckfinder/").
finder.selectActionFunction = SetFileField; //当选中图片时执行的函数
finder.popup();//调用窗口
//文件选中时执行
//fileUrl所选中文件的路径
function SetFileField(fileUrl) {
$("#xFilePath").val(fileUrl);
$("#uploadImg").attr("src",fileUrl);
}
3、对应的HTML代码:
<div>
<img src="" id="uploadImg" width="90px" height="90px" />
<input type="text" id="xFilePath" readOnly/>
<input type="button" value="上 传" οnclick="BrowseServer()" />
</div>
在项目中,添加产品和修改产品同时用到ckfinder,但内部id一致,没有封装