0

私はこれのためにjqueryを使用してtinyeditor textareaの値を取得したいと思います:

 var description = new TINY.editor.edit('description', {
    id: 'description',
    width: 330,
    height: 175,
    cssclass: 'tinyeditor',
    controlclass: 'tinyeditor-control',
    rowclass: 'tinyeditor-header',
    dividerclass: 'tinyeditor-divider',
    controls: ['bold', 'italic', 'underline', 'strikethrough', '|',
        'orderedlist', 'unorderedlist', '|', 'undo', 'redo'],
    footer: true,
    fonts: ['Verdana', 'Arial', 'Georgia', 'Trebuchet MS'],
    footerclass: 'tinyeditor-footer',
    resize: {cssclass: 'resize'}
});

jquery を使用して値を取得する場合:

$('#p_description').html($('#description').val()); // does not work

$('#p_description').html(description.post()); // does not work

$('#p_description').html(TINY.editor.description.value); // does not work

また、他の方法..

どんな助けや提案も大いに役立つでしょう..事前に感謝します

4

1 に答える 1

1

解決策を見つけたので、みんなと共有したいと思います..

description.post();
var p_description = description.t.value;

その後:

 $('#p_description').html(p_description);
于 2014-02-12T21:26:58.053 に答える