我正在使用 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>
谢谢你。