如何停止调整弹出窗口的大小完全低于一定的大小

时间:2013-08-09 08:25:32

标签: javascript jquery

锁定弹出窗口的大小调整?甚至不应该拖动

newWidth < 650 ? window.innerWidth = 650 : $(window).height();
newHeight < 400 ? window.innerHeight = 400 : $(window).width()

/* OR  $(function() {
                $( "#resizable" ).resizable({
                maxHeight: 450,
                maxWidth: 650,
                minHeight: 150,
                minWidth: 200
                });
                }); */ 
拖动中的

是可能的......

1 个答案:

答案 0 :(得分:0)

使用Jquery模式对话框。

$("#dialog-message").dialog({
    modal: true,
    draggable: false, //draggable false
    resizable: false, //resizable false
    position: ['center', 'top'],
    show: 'blind',
    hide: 'blind',
    width: 400,
    dialogClass: 'ui-dialog-osx',
    buttons: {
        "I've read and understand this": function() {
            $(this).dialog("close");
        }
    }
});

JSFIDDLE

上查看此示例