mceEditor 记录几点,和几个函数

function toggleEditor(id) {  
     if (!tinyMCE.get(id))  
          tinyMCE.execCommand('mceAddControl', false, id);  
     else 
          tinyMCE.execCommand('mceRemoveControl', false, id);  
 } 

  1. <form method="post" action="somepage">   
  2.      <textarea name="content" style="width:100%">   
  3.      </textarea>   
  4. </form>   
  5. <a href="javascript:toggleEditor('content');">Add/Remove editor</a>  

 

相关文章

http://hi.baidu.com/ankyliu/blog/item/a8dbabcd420d555a0fb345d5.html

你可能感兴趣的:(editor)