tinyMCE.init({
mode : "textareas",
//theme : "advanced", // 這個是預設值，所以可以省略！
relative_urls : false, // 網址不使用相對路徑。
plugins : " emotions", // 啟用表情符號外掛。要加入其他外掛，則是用逗號分隔。請參考這裡。
theme_advanced_buttons1 : "" // 第一工具列使用的按鈕
+"fontsizeselect,forecolor,backcolor,bold,italic,underline,strikethrough,separator,link,unlink",
theme_advanced_buttons2 : "bullist,numlist,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,outdent,indent,separator,hr,emotions", // 第二工具列使用的按鈕。
theme_advanced_buttons3 : "", // 第三工具列沒有使用按鈕。
theme_advanced_toolbar_location : "top", // 工具列靠上。
theme_advanced_toolbar_align : "left", // 工具列靠左。
force_p_newlines : false // 讓按 Enter 由 <p> (段落) 改成 <br> (換行) 。請參考這裡。
}) 