_visual_editor.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. <script type="text/javascript">
  2.   $('quicktags').style.display = 'none';
  3.   $('simple_editor').style.display = 'none';
  4.   $('visual_editor').style.display = 'block';
  5.   $('s').className = 'inactive';
  6.   $('f').className = 'active';
  7.   $('text_filter').value = 'none';
  8.   html = $('page_body').value;  
  9.   $('simple_editor').innerHTNK = '';
  10.   
  11.   if (CKEDITOR.instances.page__body_editor &&
  12.     typeof(CKEDITOR.instances.page__body_editor) == 'object') {
  13.       delete(CKEDITOR.instances.page__body_editor);
  14.     }
  15.     
  16. </script>
  17. <%= ckeditor_textarea('page', 'body', {:height => '300', :class => 'large'}) %>
  18. <script type="text/javascript">
  19.   content = CKEDITOR.instances.page__body_editor.setData(html);
  20. </script>