air 嵌套fckeditor 如何获取文本框值?
我用FLEX里面的AIR工程,嵌套fckeditor,用的是HTML组件,现在我无法获得文本框的值,也无法传值到文本框内,跪求高手指教啊this.html.htmlLoa...
我用FLEX里面的AIR工程 ,嵌套fckeditor,用的是HTML组件,现在我无法获得文本框的值,也无法传值到文本框内,跪求高手指教啊
this.html.htmlLoader.window.FCKeditorAPI.GetInstance('FCKeditor1').GetHTML(); 说是可以,但是.FCKeditorAPI我点不出来,有没高手指导啊 展开
this.html.htmlLoader.window.FCKeditorAPI.GetInstance('FCKeditor1').GetHTML(); 说是可以,但是.FCKeditorAPI我点不出来,有没高手指导啊 展开
2个回答
展开全部
我在jsp页面用过!你可以参考下
FCKeditor editor = new FCKeditor("content");
//content 就是你定义的FCK的名称;
<input type=button name=btn onClick="return check()">
//点击按钮 弹出content的值
<script>
function check(){
var editor = FCKeditorAPI.GetInstance("content");
alert(editor.EditorDocument.body.innerHTML);
//输出的就是FCK文本框中的值;
}
</script>
FCKeditor editor = new FCKeditor("content");
//content 就是你定义的FCK的名称;
<input type=button name=btn onClick="return check()">
//点击按钮 弹出content的值
<script>
function check(){
var editor = FCKeditorAPI.GetInstance("content");
alert(editor.EditorDocument.body.innerHTML);
//输出的就是FCK文本框中的值;
}
</script>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询