asp.net bootstrap wysihtml5 set值不工作

smdncfj3  于 2023-08-08  发布在  .NET
关注(0)|答案(4)|浏览(101)

我有一个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

aiazj4mn

aiazj4mn1#

您应该能够实现相同的使用下面

$("#<%=txtDescrizioneBreveCategoria.ClientID%>").wysihtml5();
window.describeEditor = window.editor;

字符串
然后你可以用

describeEditor.setValue(c.DescrizioneBreve, true)


或使用

editorDescrizioneBreve.data("wysihtml5").editor.setValue(c.DescrizioneBreve, true);


其中editorDescrizioneBreve$("#<%=txtDescrizioneBreveCategoria.ClientID%>").wysihtml5()返回的对象
PS:基于https://github.com/jhollingworth/bootstrap-wysihtml5/issues/52的解决方案

ippsafx7

ippsafx72#

对我来说,这起作用了:

$('.wysihtml5-sandbox').contents().find('body').html(descr)

字符串
我只有一个Wysihtml5在我的网页上,与多个,你需要使用更精确的选择器。

mpgws1up

mpgws1up3#

下面的代码为我工作

<textarea class="wysihtml5 form-control" rows="15"  id="txtContent" runat="server"></textarea>

   <script type="text/javascript"> 
      function GetContent() {
      var evnt = {RECORD_ID:'101'};
      $.ajax({
               type: "post",
               url: '/API/GetContent',
               contentType: "application/json; charset=utf-8",
               data: JSON.stringify(evnt),
               success: function (result) {
                  if (result) {             
                      var editorObj = $("#<%=txtContent.ClientID%>").data('wysihtml5');
                      var editor = editorObj.editor;
                      editor.setValue(result.CONTENT);
                  }
              }
          });
           }
    </script>

字符串

ltqd579y

ltqd579y4#

我的工作是:

$('#ID OF ELEMENT').data("wysihtml5").editor.setValue('TEXT TO INSERT');

字符串
我有一些在同一页。:D个
更多信息:https://github.com/jhollingworth/bootstrap-wysihtml5/issues/52

相关问题