为什么我的对话框没有拖动或调整大小?

时间:2011-06-07 17:33:11

标签: jquery-ui dialog resize drag

我无法拖动或调整对话框的大小。我已经下载了所有依赖项并在选项中尝试了各种设置,但仍然没有乐趣:

<script type="text/javascript">
function dialog(){
$("#paragraph").dialog({
    title: 'This is a title',
    width: 300,
    height: 50,
    modal: true,
    draggable: true,
    autoOpen: false,
    buttons: {
            'Remove': function () { // remove what you want to remove 
                // do something here 
                alert("this is a test alert!");
                $(this).dialog('close');
                $("#flex1").flexReload();
            },
            Cancel: function () {
                $(this).dialog('close');
            }
        }
});
$("#paragraph").dialog("open");
};
</script>

<p id="paragraph">This is some paragraph text</p>

2 个答案:

答案 0 :(得分:1)

jQuery UI库的下载是可自定义的。如果您的副本不包含“可拖动”和“可调整大小”的互动,则您的对话框将无法拖动或调整大小。

答案 1 :(得分:0)

好吧可以添加可调整大小的选项并将其设置为true。

此对话框也可以通过标题栏而不是整个对话框主体进行拖动。

有什么好处吗?