喜三
我在我的网站上使用 tinymce,但在 ie 中会出错。
function getHTML_TinyMCE(txtfield){
obj=document.getElementById('content_ifr');
if(obj.contentDocument){
content=obj.contentDocument.body.innerHTML; //FireFox (getContent() messes up cursor position)
}else{
content=tinyMCE.getContent(txtfield); //on this line error
}
return content;
}
请任何人建议
谢谢