想要在FCKeditor代码中调用Javascript

时间:2010-11-16 07:00:57

标签: php fckeditor

我想在FCKeditors中调用onblur函数。

这是我的代码。

  <?php
  $oFCKeditor = new FCKeditor('conf_emailtext['.$this->escape($data->conf_id).']') ;  
  $oFCKeditor->BasePath = $this->baseUrl().'/FCKeditor/' ;
  $oFCKeditor->Value =  $this->arrMailList[$i]['conf_emailtext'];
  $oFCKeditor->Height ='400px';
  $oFCKeditor->Width ='650px';
  $oFCKeditor->Create() ;
  ?>

有人可以帮我解决这个问题吗?

提前致谢。

汉字

1 个答案:

答案 0 :(得分:0)

不要这么认为,可以在PHP中设置。但是,您可以使用HTML /模板页面上的Javascript实现此目的。

<script type="text/javascript" language="javascript">
function FCKeditor_OnComplete( editor_instance)
{
   editor_instance.Events.AttachEvent( 'OnFocus', DoSomething ) ;
   editor_instance.Events.AttachEvent( 'OnBlur', DoSomething1 ) ;
}
</script>