销毁与恢复
最后更新于:2022-04-01 23:41:04
可以使用`editor.destroy()`和`editor.undestroy()`和恢复编辑器。如下代码:
```javascript
var editor = new wangEditor('div1');
editor.create();
$('#btn1').click(function () {
// 销毁编辑器
editor.destroy();
});
$('#btn2').click(function () {
// 恢复编辑器
editor.undestroy();
});
```
';