从 SCEditor 获取值

Jul*_*ius 2 javascript ajax jquery sceditor

我正在尝试使用以下代码从 SCEditor 文本区域获取值:

var fbeschreibung = '';
$(function() {
    // Replace all textarea's
    // with SCEditor
    $("textarea").sceditor({
        plugins: "bbcode",
        style: "css/style.less",
        width: "100%",
        toolbar:"bold,italic,underline,strike,subscript,superscript|left,center,right,justify|size,color,removeformat|bulletlist,orderedlist,horizontalrule,emoticon",
        locale:"de" ,
        resizeEnabled:false
    });
    fbeschreibung = $('textarea').sceditor('instance').val();
    $('textarea').sceditor('instance').val('Hello [b]World![/b]');
});
Run Code Online (Sandbox Code Playgroud)

然后我想通过 AJAX 发送该值:

$.post('saveprofile.php', 
   {fbeschreibung : fbeschreibung},
   function (response) {
      alert(response);
   }
);
Run Code Online (Sandbox Code Playgroud)

但是,我无法让它发挥作用。我在文档中没有找到任何提示:http://www.sceditor.com/api/sceditor/val/

我的变量fbeschreibung只是空的。我是不是做错了什么?

And*_*unt 5

这对我有用:

$(function() {
    // Replace all textarea's
    // with SCEditor
    var fbeschreibung = $("textarea").sceditor({
        plugins: "bbcode",
        style: "css/style.less",
        width: "100%",
        toolbar:"bold,italic,underline,strike,subscript,superscript|left,center,right,justify|size,color,removeformat|bulletlist,orderedlist,horizontalrule,emoticon",
        locale:"de" ,
        resizeEnabled:false
    }).sceditor('instance');
    var value = fbeschreibung.getBody().html();
});
Run Code Online (Sandbox Code Playgroud)