我正在使用HTML WYSIWYG编辑器Redactor
http://imperavi.com/redactor/examples/toolbar-external/
我试图在on:click事件后清除文本区域。
然而,因为它使用文本编辑器的div包装器,我无法弄清楚如何执行此操作。
答案 0 :(得分:3)
这有效:
$('.redactor_editor').html('');
您只需将此绑定到onclick事件,例如:
$('.clear_editor').click(function () {
$('.redactor_editor').html('');
});
当您点击具有班级.clear_editor