a.html   <iframe id="main" name="main" scrolling="no" width="600" height="300"  src="b.html" frameborder="0"></iframe>
b.html<script>
 var oFCKeditor = new FCKeditor( 'fck' ) ;              //fck 是编辑器传递值的名称
 oFCKeditor.BasePath = 'ui/fckeditor/' ; //编辑器路径
 oFCKeditor.Height = 300 ;   //高度
 oFCKeditor.Width = 600;    //宽度
 oFCKeditor.Value = '';    //宽度
 oFCKeditor.ToolbarSet = 'Default'; //工具栏选项
 oFCKeditor.Create() ;    //创建编辑器
</script>要在A页面用js获取FCK编辑器里面的内容