ckfinder+ckeditor配置经验
Posted bluestear
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ckfinder+ckeditor配置经验相关的知识,希望对你有一定的参考价值。
1,单独使用ckfinder
<div>
<script type="text/javascript" src="../ckfinder/ckfinder.js"></script>
<script type="text/javascript">
function BrowseServer(inputId)
var finder = new CKFinder() ;
finder.basePath = ‘../ckfinder/‘; //导入CKFinder的路径
finder.selectActionFunction = SetFileField; //设置文件被选中时的函数
finder.selectActionData = inputId; //接收地址的input ID
finder.popup() ;
//文件选中时执行
function SetFileField(fileUrl,data)
document.getElementById(data["selectActionData"]).value = fileUrl ;
</script>
<p>
<asp:TextBox ID="txtImgPath" runat="server"></asp:TextBox>
<input type="button" value=" 浏 览 " onclick="BrowseServer(‘<%=txtImgPath.ID %>‘);" />
</p>
</div>
2,ckfinder的php配置在config.php中
以上是关于ckfinder+ckeditor配置经验的主要内容,如果未能解决你的问题,请参考以下文章