4

ウェブサイトでalohaエディターを使用したいのですが、[ http://aloha-editor.org/ ]からダウンロードしました。ダウンロードしたバンドルには多くのファイルが含まれているため、完全に混乱しています。

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>

正常に動作します。しかし、ダウンロードしたバンドルを使用したいのですが、すべてのファイルとフォルダを管理する方法を教えてもらえますか(たとえば、画像フォルダやその他のフォルダを配置する必要がある場合)、動作を開始しますか?

4

2 に答える 2

0

すべてのファイルをプラグイン、lib、img、css を含むルート ディレクトリにコピーし、上記のガイドを参照してください。

于 2014-04-25T17:02:02.953 に答える
0

http://www.alohaeditor.org/guides/using_aloha.htmlを参照してください。/javascriptslocalhost が実行されている場所など、Web サーバーのルート ディレクトリにファイルを保存します。

于 2016-03-02T22:12:32.430 に答える