我有 9 个 DIV,我将它们都应用于可拖动的。现在我想让它们在其中一个被拖动时以相同的模式移动(好像我正在拖动所有这些)
$(".draggable").draggable({
drag: function(event,ui){
//i don't know what to write here, as i don't know what event and ui are.
// an .each will solve the problem if i get to know what these 2 arguments are
}
});