gpt4 book ai didi

javascript - jQuery makeDraggable 更巧妙一点?

转载 作者:行者123 更新时间:2023-11-29 18:31:57 24 4
gpt4 key购买 nike

我已经将来自另一个关于 SO 的问题的脚本添加到我正在使用的解决方案中,以使 jQueryUI 对话框能够被拖到文档原始边界之外

这是脚本:

//Ensure jQuery windows can be pulled outside the browser boundaries.
$.ui.dialog.prototype._makeDraggable = function() {
this.uiDialog.draggable({
containment: false
});
};

问题是,当我添加这个时,所有 表单都变成了拖动手。这使得在对话框开始拖动操作时尝试滚动对话框时出现问题。

我怎样才能将对话窗口的标题栏作为拖动 handle (原始行为)但仍然摆脱包含?

解决方案:

//Ensure jQuery windows can be pulled outside the browser boundaries.
$.ui.dialog.prototype._makeDraggable = function() {
this.uiDialog.draggable({
containment: false,
handle: ".ui-dialog-titlebar"
});
};

谢谢约瑟夫!

最佳答案

使用drag handles查找

关于javascript - jQuery makeDraggable 更巧妙一点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7230690/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com