我在Yii应用程序中的多个表单上实现了ECKEditor。除了一页之外,到处都有。这是我正在使用的代码:
<?php $form = $this->beginWidget('CActiveForm', array(
'id'=>'my-form',
'enableAjaxValidation'=>true,
'action' => array("//path-to-this-file/"),
'htmlOptions' => array('enctype'=>'multipart/form-data', 'class' => 'form-horizontal'),
));
?>
<?php $this->widget('application.extensions.eckeditor.ECKEditor', array(
'model'=>$model,
'attribute'=>'details',
)); ?>
<?php $this->endWidget(); ?>
不知道可能是原因,但我看到两种可能性:
SyntaxError:expected expression,got'&lt;'[了解更多]