求助火狐下js无法获取fckeditor的值
在IE下,可以用
return(oEditor.EditorDocument.body.innerText);
来获取fckeditor的值。
或者
var oEditor = FCKeditorAPI.GetInstance('content');
return (oEditor.GetXHTML(false));
上面2行为获取html的内容即源码。但提交的时候如果遇到例如&之类的字符,就被截断了。所以不用这个方法。
第1种方法,在火狐下会提示 undefined。无法取到值
如果在火狐下用:
return(oEditor.EditorDocument.body.innerHTML);//;
会把fckeditor的源码也取下来了。
有什么办法可以在火狐下取得fckeditor里的文本或源码?
谢谢。
------解决方案--------------------
不用IE?
------解决方案--------------------看看,学习下