//点击tmlcheck后将文本框txTestContent0设置为在线编辑器,再次点击如何让txtTestContent0恢复到原来的状态,内容为在线编辑器编辑的内容????
<script type="text/javascript">
$(function () {
$("#htmlcheck").click(function(){
$('#txtTestContent0').xheditor({});
});
})
</script>
不知道这个编辑器是否支持消毁如
$('#txtTestContent0').xheditor({destroy:true});
或者 $('#txtTestContent0').xheditor({“destroy”});