私はこれのために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
また、他の方法..
どんな助けや提案も大いに役立つでしょう..事前に感謝します