ASP.net,Jquery弹出一个子页面

来源:互联网 发布:淘宝什么时候成立的 编辑:程序博客网 时间:2024/06/07 23:28
function OpenWindow(Content, title, type, width, height) {
        var topsize = document.documentElement.scrollTop; var leftsize = 0;
        if (type.length == 0) { type = "iframe"; }
        if (width != 0) { leftsize = (window.screen.availWidth - width) / 4; } //弹出框 可左右移动 调节
        if (height != 0) {      //上下
            if (height > 600) { topsize += 10; } else if (height > 500) { topsize += 20; } else { topsize += (window.screen.availHeight - height - 130) / 4; }
        }
        ///显示子页面
        if (type == 'iframe') {
            $("#menu_window").html("<iframe id='ifrme' name='ifrme' frameborder='0' scrolling='auto' width='" + width + "' height='" + height + "'></iframe>");
            $("#ifrme").attr("src", Content);
        }
        ///用于 弹出子页面。。。若果没有下面的,OpenWindow只能在父页面显示子页面,不会弹出来。
        $("#menu_window").window({
            title: title, iconCls: 'icon-info', width: width + 15, height: height + 40, top: topsize, left: leftsize, resizable: false, modal: true, shadow: true,
            minimizable: false, maximizable: false, closable: true, closed: false, collapsible: false
        });
    }
0 0
原创粉丝点击