我在asp.net 1.1下使用了fckeditor2.6.4,出现如下问题:fckeditor 所在的页面包含在iframe中,类似如下:<html>
<body>
<select ..../>
<fckeditor..../>
</body>
</html>这个页面被下述页面调用
<html>
<body>
<iframe scr='上面页面' />
</body>
</html>___________________________________________________________________我在把fckeditor全屏编辑时,如果主页面 没有滚动条 ,一点问题没有。当主页面有滚动条时,如果转动滚轮或拖动滚动条,就出现fckeditor遮盖不住本页面的select问题,这是,只有在fckeditor输入个字符或将鼠标放到上面图标上,select 才消失,怎样才能让fckeditor一直能遮盖住select呢?主页面滚动条一定是要出的,真是头疼。。高手帮忙

解决方案 »

  1.   

    不是可以用script吗?
    onmouseover
    display="none"
    试过这种做法没?
      

  2.   

    在pjblog的根目录下找到blogpost.asp找到以下代码:
    If log_editType = 0 Then
        Dim sBasePath
        sBasePath = "fckeditor/"
        Dim oFCKeditor
        Set oFCKeditor = New FCKeditor
        oFCKeditor.BasePath = sBasePath
        oFCKeditor.Config("AutoDetectLanguage") = False
        oFCKeditor.Config("DefaultLanguage") = "zh-cn"
        oFCKeditor.Value = ""
        oFCKeditor.Height = "350"
        oFCKeditor.Create "Message"
    Else
        UBB_TextArea_Height = "200px;"
        UBB_AutoHidden = False
        UBBeditor("Message")
    End If
    将 oFCKeditor.Height = "350"
    改为:oFCKeditor.Height = "400"如果不行再将值改大点。
    原理不太懂,是我试验出来的。呵呵。