2012-03-13 42 views
0

我有這樣一個爲我的PHP程序的一些TinyMCE的textarea的編輯器:如何將TinyMCE textarea編輯器用作類?

<!-- TinyMCE -->

<script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script> <script type="text/javascript">

tinyMCE.init({` //常規選項 模式:「文字區域「, 主題:」高級「, 皮膚:」o2k7「, 插件:>」自動鏈接,列表,分頁,樣式,圖層,表格,保存,廣告vhr,advimage,advlink,emotions,iespell,i> nsertdatetime,預覽,媒體,searchreplace,打印,contextmenu,粘貼,方向性,fullscree> n,不可編輯,visualchars,nonbreaking,xhtmlxtras,模板,inlinepopups,自動保存「,

// Theme options 
    theme_advanced_buttons1 : >"save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justif>yright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect", 
    theme_advanced_buttons2 : >"cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,bl>ockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,>preview,|,forecolor,backcolor", 
    theme_advanced_buttons3 : >"tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advh>r,|,print,|,ltr,rtl,|,fullscreen", 
    theme_advanced_buttons4 : >"insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,at>tribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft", 
    theme_advanced_toolbar_location : "top", 
    theme_advanced_toolbar_align : "left", 
    theme_advanced_statusbar_location : "bottom", 
    theme_advanced_resizing : true, 

    // Example word content CSS (should be your site CSS) this one removes >paragraph margins 
    content_css : "css/word.css", 

    // Drop lists for link/image/media/template dialogs 
    template_external_list_url : "lists/template_list.js", 
    external_link_list_url : "lists/link_list.js", 
    external_image_list_url : "lists/image_list.js", 
    media_external_list_url : "lists/media_list.js", 

    // Replace values for the template plugin 
    template_replace_values : { 
     username : "Some User", 
     staffid : "991234" 
    } 

}); </script>

<!-- /TinyMCE -->

現在我想使用所有代碼上面爲一類,這樣的事情:

<textarea id="test" name="test" class="tinymce"></textarea>

如何,我應該在哪裏創建class="tinymce"

我喜歡在不同的php/html程序的許多textareas中使用這個類。

謝謝

+0

在你的HTML標記!即PHP生成的輸出 – ManseUK 2012-03-13 09:10:39

回答

4

這裏的應用TinyMCE的特定類的一個示例:

<script type="text/javascript"> 
tinyMCE.init({ 
     mode : "textareas", 
     theme : "simple", 
     editor_selector : "mceEditor", 
     editor_deselector : "mceNoEditor" 
}); 
</script> 

<form method="post" action="somepage"> 
     <textarea id="content1" name="content1" class="mceEditor" cols="85" rows="10">This will be a editor, since it has a selector class.</textarea> 
     <textarea id="content2" name="content2" class="mceEditor" cols="85" rows="10">This will be a editor, since it has a selector class.</textarea> 
     <textarea id="content3" name="content3" class="mceNoEditor" cols="85" rows="10">This is not a editor since it has a deselector class.</textarea> 
</form> 

完整的示例:http://www.tinymce.com/tryit/selector_deselector.php