在不使用包含的情况下阻止 div 被拖动到 300px 顶部上方。
到目前为止,我让它闪烁并返回..或者在下降后返回 300px
我怎样才能以适当的方式限制它?我需要它在拖动时不要拖动超过 300px 顶部,而不是像“包含”我只有上限......其余的是无限的。请帮忙。
$(function() {
$( "#draggable" ).draggable({
drag: function () {
if($(this).offset().top<300)
$(this).css("top", 300);
},
stop: function () {
if($(this).offset().top<300)
$(this).css("top", 300);
},
});
});