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,如果浏览器变小或变大,弹窗位置会改变,我这没处理,如果有兴趣自己改下。~.~

原文地址:https://www.cnblogs.com/sundayisblue/p/7109754.html