0
私はテキストエリアに続いてajaxレスポンスを取っていて、正しく動作しています...どのように私はckeditorに同じ応答を返しますか?ckeditor ajax textareaへの返信方法
var token = document.getElementById('token').value;
$.ajax({
headers: {'X-CSRF-TOKEN': token},
dataType: "json",
data: {op: op},
url: ip+'/consultaObservacionOP/',
type: 'post',
beforeSend: function(){
},
success: function(respuesta)
{
document.getElementById('observacion').value = respuesta;
},
error: function(xhr,err)
{
alert("Error");
}
});
HTML::
<div class="modal-body">
<textarea class="ckeditor" style="width:570px" id="observacion"></textarea>
</div>
http://stackoverflow.com/questions/3610010/how-do-i-set-a-value-in-ckeditor-with-javascript – bvoleti