这个问题与将CKeditor输入文本替换为“class ='ckeditor'”有关。
此电话的官方文件是:http://ckeditor.com/ckeditor_4.3_beta/samples/replacebyclass.html
HTML:
<textarea type='text' class="ckeditor reply" name='reply'></textarea>
<button type="button" STYLE="align: right;" class="btn btn-info reply_button yGreenButton">Submit Reply</button>
JS:
<script>
$(function()
{
$('.reply_button').click(function(){
var reply= CKEDITOR.instances.getData();
});
});
</script>
错误消息msg是“CKEDITOR.instances.getData();”未定义。
我不确定这是否可以通过上述方法实现...或者我应该使用JQuery方法来调用CKEditor而不是使用“class =”ckeditor“”?
非常感谢,