2
我的經典ASP頁面上有一個activeX控件。該頁面還包含一個包含具有工具欄代碼(僅HTML表格/ javascript)的asp頁面的文件。菜單隱藏在activeX控件後面
我發現的是,當工具欄有一個下拉菜單時,下拉菜單的一部分隱藏在activeX控件的後面。
這是發生了IE7 +
任何想法?
<div style="left:-25px; width:<%=xyz.xyz.webwidth%>; z-index:20;">
<div align=left valign=top width="100%" style="background:<%=xyz.htmlcolor%>; border-left: <%=bordersize%>px solid <%=xyz.htmlcolorDark %>; border-right: <%=bordersize%>px solid <%=xyz.htmlcolorDark %>;" >
<!--#include file="./includes/toolbar.asp"-->
</div>
</div>
<OBJECT style="z-index:1;" CLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331" VIEWASTEXT>
<PARAM NAME="LPKPath" VALUE="tx.lpk">
</OBJECT>
<!--TX Text Control -->
<OBJECT classid="clsid:3ce7a701-9bc2-11de-a4c1-0013d350667c" codebase="http://000.000.0.000/web/my.cab" id=objTX style="width:<%=xyz.yyy.webwidth%>; height:625px; z-index:1">
<PARAM NAME="ViewMode" VALUE="2">
<PARAM NAME="ScrollBars" VALUE="3">
<PARAM NAME="PageWidth" VALUE="12000">
<PARAM NAME="PageHeight" VALUE="11520">
<PARAM NAME="AllowDrop" VALUE="1">
<PARAM NAME="AllowDrag" VALUE="1">
<PARAM NAME="Text" VALUE="testing">
<param name="FormatSelection" value="1">
</OBJECT>
我仍然在尋找一個答案,這...這是一個第三方ActiveX控件。我們爲這個傳統項目使用傳統的ASP。
這是所有瀏覽器或只是一些問題?你也可能想谷歌「內容下拉菜單」 – Dee
目前只在IE 7+ – webdad3