jQuery UI:设置对话框的可拖动选项

发布于 2024-11-02 12:14:46 字数 205 浏览 1 评论 0原文

我有一个可拖动的对话框,我想设置拖动选项,但我不知道该怎么做。

这里是一个示例。红色框的选项 cursorAt 设置为 { top: 0, left: 0 }。我想对对话框的拖动进行同样的操作。

I have a draggable dialog and I would like to set dragging options, I don't know how to do it.

Here is an example. The red box has the option cursorAt set with { top: 0, left: 0 }. I would like to do the same with the dragging of the dialog.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野の 2024-11-09 12:14:46

要更改对话框小部件的可拖动选项,您可以像这样引用它:

$("#myDialog").dialog("widget").draggable("option", "cursorAt", { top: 0, left: 0 });

您也可以对调整大小执行相同的操作。

To change the dialog widget's draggable options, you can reference it like this:

$("#myDialog").dialog("widget").draggable("option", "cursorAt", { top: 0, left: 0 });

You can do the same with resizable as well.

瑾夏年华 2024-11-09 12:14:46

只需将可拖动元素添加到对话框即可:

$("#draggable, #dialog").draggable({
    cursorAt: { top: 0, left: 0 }
});

您可以在任何可拖动的元素上设置可拖动属性。

Just add the dragable to the dialog:

$("#draggable, #dialog").draggable({
    cursorAt: { top: 0, left: 0 }
});

You can set the dragable properties on any element that you make dragable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文