jQuery UI Draggable 是一个 jQuery UI 插件,它允许你使元素可拖动。你可以将任何 HTML 元素变为可拖动的元素,并且可以自定义拖动的各种行为。
Item from array 是指从一个数组中获取元素,通常用于动态生成可拖动的元素。
原因:
position
属性。解决方法:
解决方法:
draggable
类。示例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Draggable from Array</title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<style>
.draggable {
width: 100px;
height: 100px;
background-color: red;
margin: 10px;
display: inline-block;
}
</style>
</head>
<body>
<div id="container"></div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script>
$(function() {
var items = [
{ id: 1, text: 'Item 1' },
{ id: 2, text: 'Item 2' },
{ id: 3, text: 'Item 3' }
];
$.each(items, function(index, item) {
var $element = $('<div class="draggable">' + item.text + '</div>');
$('#container').append($element);
});
$('.draggable').draggable();
});
</script>
</body>
</html>
希望这些信息对你有所帮助!
领取专属 10元无门槛券
手把手带您无忧上云