2016-11-05 26 views
1

私はCKeditorを使用しています。私はjqueryのを使用して、ボタンのクリックに変数にコンテンツを格納する必要があります -
私は私のコントローラコードがある[表示] -ckeditorの内容を取得する方法

<?php echo $this->ckeditor->editor("textarea name","Enter Post Content"); ?>  

にCKEditorバージョンのテキストエリアを表示するには、次のコードを入れている -

することが可能である方法
$this->load->library('ckeditor');  
    $this->load->library('ckfinder');  
    $this->ckeditor->basePath = base_url().'assets/ckeditor/'; 
     $this->ckeditor->config['toolbar'] = array(
       array('Source', '-', 'Bold', 'Italic', 'Underline', '-','Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo','-','NumberedList','BulletedList')    
               ); 
$this->ckeditor->config['language'] = 'en';  
$this->ckeditor->config['width'] = '730px';   
$this->ckeditor->config['height'] = '300px';      
$this->ckfinder->SetupCKEditor($this->ckeditor,'../../assets/ckfinder/');  

データを変数に格納しますか?
ありがとうございます。

+1

可能な重複のようにしてくださいボタンをクリックします。http://stackoverflow.com/questions/3799317/how-can -i-get-ckeditor-using-jqueryのコンテンツ取得 –

答えて

1

だけしてみてください -
例 -

<?php echo $this->ckeditor->editor("desc","Enter desc Content"); ?> 

event-はただの

var variable-name = CKEDITOR.instances.desc.getData(); 
関連する問題