gpt4 book ai didi

javascript - 可在放置时放置,元素会附加两次

转载 作者:行者123 更新时间:2023-11-28 07:07:47 26 4
gpt4 key购买 nike

由于这种拖放操作,我几乎要崩溃了。我只是想在触发丢弃时发出提醒消息。

这是我的代码,我不明白为什么警报发送了两次!请帮助我,否则我很快就会住院:p

jQuery:

$(document).ready(function() {

init();

function init () {

sorting();
dragging();
dropping();
}

function resize (event, ui) {
ui.helper.find("img#day_image").css({ height: img_height, width: img_width });
ui.helper.css({ height: img_height, width: img_width });
}

function sorting () {
$("#dropbar").sortable({
connectWith: ".deal-itinerary-list",
revert: true,
dropOnEmpty: false
/*
stop: function (event, ui) {

$("li.placeholder").each(function(i) {

$(this).find("span.day-nr").text('Day ' + ++i);

});

}
*/
});
}

function dragging () {
$(".deal-itinerary-list li").draggable({
connectToSortable: "#dropbar",
helper: function (event) {
var image = $(this).find("img#day_image").clone();
return image;
},
revert: false,
opacity: 0.5,
cursorAt: { top: 50, left: 50},
start: function (event, ui) {
$(ui.helper.find(".day-content")).hide();
},
drag: resize
});
}

function dropping() {

$("#dropbar").droppable({
tolerance: "pointer",
accept: "img#day_image",
drop: function (ui) {

alert("hello");

}
});

}

$( "ul, li" ).disableSelection();

});

最佳答案

如果在同一元素上同时使用可排序和可放置,显然这是一个已知问题。

This questions solved my problem .

关于javascript - 可在放置时放置,元素会附加两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31563555/

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