jquery 从放置的 div 传递可拖动对象

发布于 2025-01-03 07:45:20 字数 326 浏览 1 评论 0原文

我想在将可拖动对象放入可放置分区后更改其背景。我怎样才能传递当前被删除的对象?

假设有#drag div 和#drop div。将 #drag 移动到 #drop div 后。我想将#drag div 的颜色更改为黑色。

$("#drop").droppable({
    drop: function(){
        $(this).css('background','black');
    },
});

我不知道如何将拖动的元素拖放到 #drop div 中后将其传递到可放置对象中。我以为“这个”会起作用。但它似乎指向#drop div

i want to change the background of the draggable object after being dropped in the droppable division. how can i pass the current object being dropped?

assume there is #drag div and #drop div. after moving #drag into #drop div. I want to change the color of #drag div to black.

$("#drop").droppable({
    drop: function(){
        $(this).css('background','black');
    },
});

i have no idea how to pass the dragged element into the droppable object after dragging and dropping it into the #drop div. I assumed 'this' would work. but it seems that it points to the #drop div

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

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

发布评论

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

评论(1

岁月无声 2025-01-10 07:45:20

试试这个:

...
drop: function(event, ui) {

  // here ui.draggable is the object that was dragged 
  ui.draggable.css('background','black');


}
...

Try this:

...
drop: function(event, ui) {

  // here ui.draggable is the object that was dragged 
  ui.draggable.css('background','black');


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