通过 DOM 事件流更改位置 - Jquery/JS

Change position through DOM EVENT FLOW - Jquery/JS

我想在用户停止拖动后更改 <div> 位置。没有逗号的数字 10 也不起作用。

它确实变成了蓝色,但是位置没有。我能做些什么? 我有很多 .screen 个 div。谢谢!

$('.screen').draggable({
  stop: function(event, ui) {
    if (parseInt(event.target.offsetTop) < -1) {
      event.target.style.backgroundColor = "blue";
      event.target.style.offsetTop = "10";
    }
  }
})

这里有两个主要问题。首先offsetTop是Element对象的属性,不是Element的style

其次offsetTopreadonly,所以你不能用它来更新元素的位置。为此,您需要设置 style.top:

$('.screen').draggable({
  stop: function(event, ui) {
    if (event.target.offsetTop < -1) {
      event.target.style.backgroundColor = "blue";
      event.target.style.top = '10px';
    }
  }
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" />
<div class="screen">Drag me</div>

另请注意,offsetTop returns 是一个整数值,因此 parseInt() 不是必需的。