2013-04-18 87 views
1

我有一個textarea和已實施jHtmlArea編輯器的jQuery插件。當點擊重置按鈕。我需要將其設置爲空或空白。如何設置Jhtmlarea編輯器,空白或空

HTML是如下

<textarea cols="170" id="area4" rows="20"></textarea> 

我試過,但沒有奏效。

$('#area4').htmlarea('html', ''); 

請任何其他建議。

回答

1

我只是這個代碼的幫助,使其在沒有空間。只是使用一個額外的空白;)和我

$('#area4').htmlarea("html", " "); 
3

是的我剛剛得到這個工作:

$('#textarea-content').htmlarea('html',' '); 

但這不起作用

$('#textarea-content').htmlarea('html',''); 

確定這些似乎是最好的

$('#textarea-content').htmlarea('html','\n'); 

$('#textarea-content').htmlarea('html','\b'); 

他們在一開始

離開這個頁面http://jquery-spellchecker.badsyntax.co/jhtmlarea.html

+0

http://jhtmlarea.codeplex.com/wikipage?title=Modify%20Editor%20Programatically%20using%20JavaScript – dt192

+0

儘量it..it沒有按工作順利」將不起作用.. –

+0

啊IM變得非常沮喪笑我看到這個問題textarea的不空,但在iframe犯規更新 – dt192