我的页面上有一个modal popup extender
和一个ActiveX object control
,但弹出窗口会显示在对象下方。 如何在对象控件上显示弹出窗口? 这是我的代码:如何在ActiveX对象上显示模态弹出窗口?
<object id="lablab" clsid="clsid:...." width="100px" height="120px">
</object>
我的页面上有一个modal popup extender
和一个ActiveX object control
,但弹出窗口会显示在对象下方。 如何在对象控件上显示弹出窗口? 这是我的代码:如何在ActiveX对象上显示模态弹出窗口?
<object id="lablab" clsid="clsid:...." width="100px" height="120px">
</object>
:它环绕div标签,然后你就可以通过DIV &触发要
<div style="width:100px; height:120px;">
<object id="lablab" clsid="clsid:...." width="100px" height="120px">
</object>
</div>
我在一个div使用弹出任何代码在事件容易陷阱举措,但是我无法在弹出框中显示此对象,因为对象比弹出式对象更强:),并且弹出窗口显示在对象下方。 我使用iframe标签! 并设置z-index属性弹出iframe,iframe强于对象
<asp:Panel runat="server" ID="PnlRefer" Width="300px" Style="background-color: #D6D6D6; padding-bottom: 5px; min-height: 145px; display: block; position: absolute; top: -100px;">//my popup
<iframe src="" width="297px" style="position: fixed;z-index:-1; height:303px;"
scrolling="no"></iframe>
<div style="z-index: 1;height: 300px;Width:300px;">
...//content of popup
</div>
</asp:Panel>