0

ポップアップ ウィンドウのサイズ変更をロックしますか? ドラッグすらできない

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
                });
                }); */ 

両方でドラッグが可能です...

4

1 に答える 1

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でこの例を確認してください

于 2013-08-09T08:36:28.623 に答える