私は奇妙な問題を抱えています。CKEditor テンプレート ボタンをクリックすると、Anty コンテンツなしでテンプレート ウィンドウが開きます。これは CKEditor サンプルで正常に動作しているため、問題は私のセットアップにあるようです。しかし、コンソールと firebug にエラーがないため、原因を突き止めることができません。以前にこの問題に直面した人はいますか?
質問する
389 次
1 に答える
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;
})
作業イメージ
于 2012-06-18T06:50:33.930 に答える