プロジェクトの 1 つでCL Editor (V1.3.0)を使用しようとしていますが、動作しません。「はじめに」セクションに従ってすべてを行ったので、次のファイルを含む「test」という名前のフォルダーを作成しました。
jquery.cleditor.css
jquery.min.js
jquery.cleditor.min.js
test.html
images/buttons.gif
images/toolbar.gif
私のtest.htmlファイルは次のようになります。
<html>
<head>
<link rel="stylesheet" type="text/css" href="jquery.cleditor.css" />
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.cleditor.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#input").cleditor();
});
</script>
</head>
<body>
<textarea id="input" name="input"></textarea>
</body>
</html>
それでも、test.html を開くと、通常のテキストエリアが表示されます。私が間違っていた可能性のあるアイデアはありますか?追加情報が必要ですか?
注: この例は問題なく動作するため、私のブラウザー設定とは関係ありません。