サイトに投稿を追加するために ckeditor を使用しています:
<textarea class="ckeditor" cols="80" id="editor1" name="editor1" rows="10"></textarea>
jquery経由でボタンをクリックしたときに、テキストまたは画像をテキストエリアに追加したいと考えています。
私はこれを試しましたが、うまくいきませんでした:
<script>
$(document).ready(function(){
$('.button').click(function(){
img = "<img src='http://localhost/sdn/files/uploads/1368647314.png'/>'";
$(".cke_editable").append(img); // also I tried: $("#editor1").append(img);
});
});
</script>
ありがとうございました。