gpt4 book ai didi

javascript - 使用 jquery Draggable UI 使项目可拖动

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

我有一个 html 页面,它有一个 jQuery 可拖动功能 --

function Drag() {
$(function () {
$($("span")).draggable({
containment: "document"

});
});
$(function () {
$($("li")).draggable({
containment: "document"

});
});
$(function () {
$($("a")).draggable({
containment: "document"

});
});
$(function () {
$($("div")).draggable({
containment: "document"

});
});
}

但是我不想为每个元素添加这样的内容,这会花费我很多时间,而且对我没有任何好处......

知道如何循环抛出页面中的元素并对每个元素进行可拖动。

谢谢!

最佳答案

一个好的做法是添加如下所示的类:

$( ".draggable" ).draggable({
containment: "document
});

关于javascript - 使用 jquery Draggable UI 使项目可拖动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28875414/

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