我在 Web 浏览器控件上使用 NiceEdtor。在 jQuery ready() 函数上,我试图设置它的内容,结果出现以下错误:
Object doesn't support property or method 'setContent'
以下是我给定的代码:
$(function () {
var nicE = new nicEditors.findEditor('__edit');
nicE.setContent("<b>Hi</b>");
});
文本区域定义如下:
<textarea name="question" rows="15" cols="130" id="__edit"></textarea>