本文介绍了如何在禁用最大化功能的情况下打开子窗口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

function basicPopup() {
       popupWindow = window.open("QuickConnect.aspx", 'popUpWindow', 'height=500,width=500,left=400,top=150,resizable=no,scrollbars=No,toolbar=no,menubar=no,location=yes,directories=no, status=No,center=yes,fullscreen=no;');
       return false;

   }



我已经使用了此功能,并以
的形式单击按钮



I have used this function and called on button click as

<asp:Button ID="Button1" runat="server" Text="Button"  OnClientClick="basicPopup()"/>



所有功能都运行良好,但是并没有最小化,并且没有调整大小.我希望出现的窗口不能调整大小和移动.

sandeep raj



all the features are going well but it''s not minimising and it''s resizable .I want the window that appears not resize and movable.

sandeep raj

推荐答案


这篇关于如何在禁用最大化功能的情况下打开子窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 20:31