我有一个wysihtml框,我想在一 AJAX 调用后填充它的值
$("#<%=txtDescrizioneBreveCategoria.ClientID%>").wysihtml5();
function ModificaCategoria(id) {
$.ajax({
url: "Categorie.aspx/GetCategoria",
type: 'POST',
dataType: "json",
data: JSON.stringify({ 'id': id }),
contentType: 'application/json; charset=utf-8',
cache: false,
async: false,
processdata: true,
traditional: true,
success: function (data) {
var c = data.d;
//we need to parse it to JSON
c = $.parseJSON(c);
$('#<%=txtTitleCategoria.ClientID%>').val(c.Title);
$('#<%=txtDescrizioneBreveCategoria.ClientID%>').val(c.Descrizione);
}
});
}
字符串
我已经试过了
$('#<%=txtDescrizioneBreveCategoria.ClientID%>').contents().find('body').html('<b>New text</a>');
型
与
$('#<%=txtDescrizioneBreveCategoria.ClientID%>').html(c.Descrizione);
型
与
var editorObj = $("#<%=txtDescrizioneBreveCategoria.ClientID%>").data('wysihtml5');
var editor = editorObj.editor;
editor.setValue(c.DescrizioneBreve);
型
但编辑器变量总是未定义我使用的是wysihtml5x v0.4.15链接here
4条答案
按热度按时间aiazj4mn1#
您应该能够实现相同的使用下面
字符串
然后你可以用
型
或使用
型
其中
editorDescrizioneBreve
是$("#<%=txtDescrizioneBreveCategoria.ClientID%>").wysihtml5()
返回的对象PS:基于https://github.com/jhollingworth/bootstrap-wysihtml5/issues/52的解决方案
ippsafx72#
对我来说,这起作用了:
字符串
我只有一个Wysihtml5在我的网页上,与多个,你需要使用更精确的选择器。
mpgws1up3#
下面的代码为我工作
字符串
ltqd579y4#
我的工作是:
字符串
我有一些在同一页。:D个
更多信息:https://github.com/jhollingworth/bootstrap-wysihtml5/issues/52