复制代码 代码如下: <BR>function BrowseServer(inputId) <BR>{ <BR>var finder = new CKFinder() ; <BR>finder.basePath = '../ckfinder/'; //导入CKFinder的路径 <BR>finder.selectActionFunction = SetFileField; //设置文件被选中时的函数 <BR>finder.selectActionData = inputId; //接收地址的input ID <BR>finder.popup() ; <BR>} <BR>//文件选中时执行 <BR>function SetFileField(fileUrl,data) <BR>{ <BR>document.getElementById(data["selectActionData"]).value = fileUrl ; <BR>} <BR> 注:CKFinder 2.0 下载地址:http://ckfinder.com/download