我有一个奇怪的问题。每当我点击CKEditor模板按钮时,模板窗口都会打开而没有anty内容。问题似乎与我的设置有关,因为这在CKEditor示例中工作正常。但我无法找出原因,因为控制台和firebug中没有错误。有人在此之前遇到过这个问题吗?
答案 0 :(得分:1)
工作演示 http://jsfiddle.net/ffP2K/1/ 或 http://jsfiddle.net/ffP2K/1/show/
我希望你有正确的脚本参考,下面的示例应该有所帮助。
如果我错过了什么,请告诉我。
良好链接:http://ckeditor.com/blog/CKEditor_for_jQuery
希望这有帮助,
<强>脚本强>
<script type='text/javascript' src="http://ckeditor.com//apps/ckeditor/3.5.2/ckeditor.js"></script>
<强>代码强>
var editor = CKEDITOR.replace( 'editor' );
$('#click').click(function(){
// Find outer div
var div = document.getElementById('outer');
// Get value from height textbox
var height = document.getElementById('height').value;
// Uses jQuery framework to set the height of the div
$(div).css('height', height + 'px');
// Tells CKEDITOR to resize to the desired height, and width
editor.resize($(div).width(),height);
return false;
})
工作图片