如何通过Javascript检索YUI Rich Text Editor的内容?

时间:2011-05-29 20:02:40

标签: editor yui

我遇到document.getElementById('editor').value的问题,因为我无法获得该值。 YUI编辑器的textarea不是普通的TextArea。

<script>
function viewValue
{
   alert(document.getElementById('editor').value);
}
</script>

textarea的:

<div class="editor" > 
    <textarea id="editor" name="editor">            
    </textarea>
</div>

文档:http://developer.yahoo.com/yui/editor/#getdata

1 个答案:

答案 0 :(得分:0)

<script>
    //Put the HTML back into the text area
    oEditor.saveHTML();
    //The var html will now have the contents of the textarea
    var html = oEditor.get('element').value;
    alert(html);
</script>