我正在尝试使用cleditor
. 但在ajax响应之后还不清楚。我的代码如下:
<link rel="stylesheet" href="cleditor/jquery.cleditor.css" />
<script src="cleditor/jquery.min.js"></script>
<script src="cleditor/jquery.cleditor.min.js"></script>
<script>$(document).ready(function () { $("#desc").cleditor(); });
</script>
//Ajax Response Function
success: function(response)
{
$("#btnSubmit").attr('value', 'Add');
$("#frm_data")[0].reset();
$("#Comman").show();
}
<label class="col-sm-2 control-label">Description:</label>
<div class="col-sm-10">
<textarea rows="5" cols="5" name="desc" id="desc" class="form-control"> </textarea>
</div>
请让我知道如何清除 ajax 响应中的文本区域值。