zoukankan      html  css  js  c++  java
  • fineui 模拟右下角弹窗

    <!DOCTYPE html>

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head runat="server">

        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

        <title></title>

    </head>

    <body>

        <form id="form1" runat="server">

            <f:PageManager runat="server" />

           

            <f:Button runat="server" ID="btn1" OnClick="btn1_OnClick" Text="haha"></f:Button>

            <f:Window ID="Window1" runat="server" Height="200px" Width="300px" IsModal="true" EnableMaximize="True"

                CloseAction="HidePostBack" EnableIFrame="True" Hidden="False" Icon="ApplicationFormEdit"

                Target="Top" EnableResize="True">

            </f:Window>

        </form>

    </body>

    </html>

    <script src="../../res/js/jquery.js"></script>

    <script>

        Ext.onReady(function () {

            setWin();

        });

        function setWin() {

            var window1 = F('<%=Window1.ClientID %>');

            //alert(window1.getHeight() + "-" + window1.getWidth() + " " + ($(window).width() - window1.getWidth()));

            window1.setX($(window).width() - window1.getWidth());

            window1.setY($(window).height() - window1.getHeight());

        }

    </script>

    后台代码:

    protected void btn1_OnClick(object sender, EventArgs e)

            {

                PageContext.RegisterStartupScript(Window1.GetShowReference("alert.aspx", "查看库存") + "setWin();");

            }

    有个小bug,如果浏览器变小或变大,弹窗位置会改变,我这没处理,如果有兴趣自己改下。~.~

  • 相关阅读:
    sql 循环表中记录
    asp.net 上传XML,txt 直接读取文件内容
    两个表join 连接,去掉重复的数据
    图片横向显示
    接口测试
    find 命令
    Python 面向对象编程
    python之装饰器、生成器、内置函数、JSON
    python 之常用模块
    python 之函数
  • 原文地址:https://www.cnblogs.com/sundayisblue/p/7109754.html
Copyright © 2011-2022 走看看