我想在我的网站上使用aloha编辑器,我从[http://aloha-editor.org/].Now下载它我完全感到困惑,因为下载的包中包含大量文件。
我拿起aloha.js和aloha.css并添加了以下脚本
$(document).ready(function () {
Aloha.ready(function () {
var $ = Aloha.jQuery;
$('.editable').aloha();
})
});
但它没有用。然后我试了
<script src="http://cdn.aloha-editor.org/current/lib/aloha.js"
data-aloha-plugins="common/format,
common/list,
common/link,
common/highlighteditables">
</script>
<!-- load the Aloha Editor CSS styles -->
<link href="http://cdn.aloha-editor.org/current/css/aloha.css" type="text/css" />
<!-- make all elements with class="editable" editable with Aloha Editor -->
<script type="text/javascript">
Aloha.ready( function() {
var $ = Aloha.jQuery;
$('.editable').aloha();
});
</script>
工作正常。但我想使用我下载的捆绑包,任何人都可以告诉我如何管理所有文件&amp;文件夹(以前我必须放置图像文件夹和其他文件夹..)所以它开始工作?
答案 0 :(得分:0)
将所有文件复制到根目录,其中包括插件,lib,img,css,并参考上述指南。
答案 1 :(得分:0)
见http://www.alohaeditor.org/guides/using_aloha.html。
将/javascripts
中的文件保存在Web服务器的根目录中,例如运行localhost的位置。