我遇到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>
答案 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>