我已经textarea
并已实施jHtmlArea
编辑器jquery插件。并且当点击重置按钮时。我需要将其设置为空或空白。
HTML如下
<textarea cols="170" id="area4" rows="20"></textarea>
我试过了,但它没有用。
$('#area4').htmlarea('html', '');
请提出任何其他建议。
答案 0 :(得分:3)
是的,我刚刚开始工作:
$('#textarea-content').htmlarea('html',' ');
但这不起作用
$('#textarea-content').htmlarea('html','');
好吧这些似乎是最好的
$('#textarea-content').htmlarea('html','\n');
或
$('#textarea-content').htmlarea('html','\b');
他们在开始时没有留下任何空间
答案 1 :(得分:1)
我刚刚在这段代码的帮助下完成了它。只是使用了额外的空白区域;)并为我顺利工作
$('#area4').htmlarea("html", " ");