2012-04-14 70 views
1

我在我的textarea中加載tinyMCE(基於jquery插件),但我在我的框中看到默認的html。當我發送文本時,我的數據+這個字符插入到mysql中。如何刪除這些字符?加載tinyMCE時的默認html字符

HTML字符:

<p><br></p> 

載入TinyMCE:

<script> 
tinyMCE.init({ mode : "textareas", theme : "simple",directionality : "rtl" 
,theme_advanced_buttons3 : "", theme_advanced_toolbar_location : "top",height:'100%' 
,theme_advanced_toolbar_align : "left",}); 
</script> 

的mysql:

&lt;p&gt; 

感謝

回答