jquery弹出定位问题

时间:2017-06-16 01:20:14

标签: jquery html dialog popup

enter image description here

如何使弹出窗口对齐,如下图所示? 目前的代码如下:

        $("#jobActionsPopup").dialog({
            dialogClass: "no-close",
            position: { my: "middle top", at: "middle bottom", of: $("#jobActionsButton") },
            autoOpen: false,
            draggable: true,
        }).dialog("widget").find(".ui-dialog-titlebar").hide();

1 个答案:

答案 0 :(得分:1)

如何将my: "middle top"更改为my: "right top",将at: "middle bottom"更改为at: "right bottom"

这是example