1

我在我的应用程序中使用 ckEditor,我正在使用 Cakephp 2.3.8 。我的 CTP 文件我使用这个 JQ 为 ckeditor 进行文本预览,但它现在可以工作了,任何人都可以帮我解决这个问题吗?这是我的 CTP 文件代码。

<script>
    $(document).ready(function () {
        $('#ClaimDescription').keyup(function(){
            $('#target').html($(this).val());
        });
    });
</script>

<?= 
    $this->Form->textarea('description', array(
                          'class'=>'ckeditor',  
                          'value'=>$responseInfo['Response']['description'] 
                         )); 
?>
<div id="target"> </div>

我想在上面的 div 中预览

4

2 回答 2

0

据我所知,版本或更高版本的 ckeditor 已删除预览工具。

于 2013-09-16T09:23:24.083 回答
-1

我认为这条线是错误的。

   $('#ckeditor').keyup(function(){

因为您将 ckeditor 作为 id,但它是一个类。

于 2013-08-12T05:36:01.993 回答