gpt4 book ai didi

jquery - 使 bootstrap twitter 对话框模态可拖动

转载 作者:行者123 更新时间:2023-12-03 21:27:28 25 4
gpt4 key购买 nike

我正在尝试使用此 jquery 插件使 bootstrap twitter 对话框模式可拖动:

http://threedubmedia.com/code/event/drag#demos

但它不起作用。

var $div = $('html');
console.debug($('.drag'));
$('#modalTest')
.drag("start", function(ev, dd) {
dd.limit = $div.offset();
dd.limit.bottom = dd.limit.top + $div.outerHeight() - $(this).outerHeight();
dd.limit.right = dd.limit.left + $div.outerWidth() - $(this).outerWidth();
})
.drag(function(ev, dd) {
$(this).css({
top: Math.min(dd.limit.bottom, Math.max(dd.limit.top, dd.offsetY))
, left: Math.min(dd.limit.right, Math.max(dd.limit.left, dd.offsetX))
});
});

你知道我该怎么做吗?

最佳答案

$("#myModal").draggable({
handle: ".modal-header"
});

这对我有用。我从 there 得到的。如果您感谢我,请将70%捐给Andres Ilich

关于jquery - 使 bootstrap twitter 对话框模态可拖动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12571922/

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