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/');
データを変数に格納しますか?
ありがとうございます。
可能な重複のようにしてくださいボタンをクリックします。http://stackoverflow.com/questions/3799317/how-can -i-get-ckeditor-using-jqueryのコンテンツ取得 –