デザイン中の Web ページに WYSIWYG エディターを組み込みたいと考えています。bootstrap-wysihtml5 に出くわしました。見た目からして、まさに私が求めているもの (シンプルでエレガント) です。例を見たかったのですが、設定方法を示す良い例はあまりありません。これまでのところ、私はこれを行ってきました:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Editor</title>
<link rel="stylesheet" type="text/css" media="screen" href="bootstrap-wysihtml5.css"/>
<script src = "bootstrap-wysihtml5.js" type = "text/javascript"></script>
<script src = "wysihtml5-0.3.0.min.js" type = "text/javascript"></script>
<script src = "bootstrap.min.js" type = "text/javascript"></script>
</head>
<body>
<textarea class="textarea" id="ta1" placeholder="Enter text ..." style="width: 810px; height: 200px">
</textarea>
<script>$(".textarea").wysihtml5();</script>
<body>
</html>
Chrome コンソールのエラーは次のとおりです。
Uncaught TypeError: Cannot read property 'fn' of undefined bootstrap-wysihtml5.js:368
Uncaught TypeError: undefined is not a function bootstrap.min.js:6
Uncaught TypeError: Object [object Object] has no method 'wysihtml5' editor.html:14
これらのエラーを解決する方法がわかりません。どこが間違っていると思いますか?
ありがとう。