现在我有一个页面,称为父页面,当点击父页面按钮时,则弹出子页面。这时我想将子页面始终置顶于父页面之上,请问如何做呢?
小弟是新手,请高手们指点一下,谢谢!

解决方案 »

  1.   

    使用Javascript实现
    方法如下:
    使用方法如下:
    vReturnValue = window.showModalDialog(sURL [, vArguments] [, sFeatures])
    参数说明:
    sURL
    必选参数,类型:字符串。用来指定对话框要显示的文档的URL。
    vArguments
    可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过window.dialogArguments来取得传递进来的参数。
    sFeatures
    可选参数,类型:字符串。用来描述对话框的外观等信息,可以使用以下的一个或几个,用分号“;”隔开。
    dialogHeight 对话框高度,不小于100px,IE4中dialogHeight 和 dialogWidth 默认的单位是em,而IE5中是px,为方便其见,在定义modal方式的对话框时,用px做单位。
       dialogWidth: 对话框宽度。
       dialogLeft: 距离桌面左的距离。
       dialogTop: 离桌面上的距离。
       center: {yes | no | 1 | 0 }:窗口是否居中,默认yes,但仍可以指定高度和宽度。
       help: {yes | no | 1 | 0 }:是否显示帮助按钮,默认yes。
       resizable: {yes | no | 1 | 0 } [IE5+]:是否可被改变大小。默认no。
       status: {yes | no | 1 | 0 } [IE5+]:是否显示状态栏。默认为yes[ Modeless]或no[Modal]。
    scroll:{ yes | no | 1 | 0 | on | off }:指明对话框是否显示滚动条。默认为yes。还有几个属性是用在HTA中的,在一般的网页中一般不使用。
    dialogHide:{ yes | no | 1 | 0 | on | off }:在打印或者打印预览时对话框是否隐藏。默认为no。
    edge:{ sunken | raised }:指明对话框的边框样式。默认为raised。
    unadorned:{ yes | no | 1 | 0 | on | off }:默认为no。传入参数:
    要想对话框传递参数,是通过vArguments来进行传递的。类型不限制,对于字符串类型,最大为4096个字符。也可以传递对象,例如:test1.htm
    ====================
    <script>
    var mxh1 = new Array("mxh","net_lover","孟子E章")
    var mxh2 = window.open("about:blank","window_mxh")
    // 向对话框传递数组
    window.showModalDialog("test2.htm",mxh1)
    // 向对话框传递window对象
    window.showModalDialog("test3.htm",mxh2)
    </script>test2.htm
    ====================
    <script>
    var a = window.dialogArguments
    alert("您传递的参数为:" + a)
    </script>test3.htm
    ====================
    <script>
    var a = window.dialogArguments
    alert("您传递的参数为window对象,名称:" + a.name)
    </script>可以通过window.returnValue向打开对话框的窗口返回信息,当然也可以是对象。例如:test4.htm
    ===================
    <script>
    var a = window.showModalDialog("test5.htm")
    for(i=0;i<a.length;i++) alert(a[i])
    </script>test5.htm
    ===================
    <script>
    function sendTo()
    {
    var a=new Array("a","b")
    window.returnValue = a
    window.close()
    }
    </script>
    <body>
    <form>
    <input value="返回" type=button onclick="sendTo()">
    </form>