2010-07-14 71 views

回答

0

你並不真的需要使用這個插件,只得到TinyMCE的代碼,並在您的模板是這樣的(切碎位爲清楚起見)對其進行設置:

<?php 
echo "\n".$javascript->link('tiny_mce/tiny_mce.js',false); 
?> 
<script type="text/javascript"> 


    $().ready(function() { 
     $('textarea').tinymce({ 
      // Location of TinyMCE script 
      //   // General options 
      theme : "advanced", 
      plugins : "safari,pagebreak,style,layer,table,save,advhr,advimage,...", 

      // Theme options 
      theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,fontselect,fontsizeselect,|,image,link,unlink,... : 
"cut,copy,paste,pastetext,pasteword,|,search,replace,|,... ", 
       theme_advanced_buttons3 : "tablecontrols", 
       theme_advanced_toolbar_location : "top", 
       theme_advanced_toolbar_align : "left", 
       theme_advanced_statusbar_location : "bottom", 
       theme_advanced_resizing : true 
      }); 
     }); 
    </script> 
?> 

我實際上是這樣做的,因此我可以將它放在需要的地方。研究TinyMCE wiki和api - 它們非常有用。

相關問題