我在html页面上使用CKEditor 4.3,我想阅读本地html页面并将其放在CKEditor上。 (我是巴西人=英语不好:P)
这是我的jQuery代码:
$(document).ready(function(){
$('#editor').ckeditor(function(){
var editor = $('#editor').ckeditorGet();
// Capturando o conteúdo do editor
var data = $('#editor').val();
// Adicionando conteúdo ao editor
$('#editor').val('load("Home.htm")');
},
{
width: 780,
height: 350
});
});
答案 0 :(得分:1)
'load("Home.htm")'
加载数据
$.get("Home.htm").done(function (data) {
// Do something with the data
$('#editor').val(data);
});
我希望这会有所帮助。