gpt4 book ai didi

javascript - 可以拖但不能放: jQuery Plug-in

转载 作者:行者123 更新时间:2023-12-02 18:01:26 24 4
gpt4 key购买 nike

我正在尝试使用 jQuery 插件在我的应用程序中实现拖放功能,如下所述:http://farhadi.ir/projects/html5sortable/无论如何,我只能拖动列表对象,而不能将它们放入我的项目中。

然后,我尝试简单地使用 .html 文件来实现所描述的拖放操作,而不需要应用程序的所有复杂性。

所以,这是代码:

<HTML>
<HEAD>
</HEAD>
<BODY>



<section id="demos">
<h1>Demos</h1>
<style>
#demos section {
overflow: hidden;
}
.sortable {
width: 310px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.sortable.grid {
overflow: hidden;
}
.sortable li {
list-style: none;
border: 1px solid #CCC;
background: #F6F6F6;
color: #1C94C4;
margin: 5px;
padding: 5px;
height: 22px;
}
.sortable.grid li {
line-height: 80px;
float: left;
width: 80px;
height: 80px;
text-align: center;
}
.handle {
cursor: move;
}
.sortable.connected {
width: 200px;
min-height: 100px;
float: left;
}
li.disabled {
opacity: 0.5;
}
li.highlight {
background: #FEE25F;
}
li.sortable-placeholder {
border: 1px dashed #CCC;
background: none;
}
</style>

<section>
<h1>Sortable List</h1>
<ul id="sortable1" class="sortable list">
<li draggable="true" class style="display: list-item;">Item 1
<li draggable="true" class style="display: list-item;">Item 2
<li draggable="true">Item 3
<li draggable="true">Item 4
<li draggable="true">Item 5
<li draggable="true">Item 6
</ul>
</section>
</section>
<script src="/html5sortable/jquery-1.7.1.min.js"></script>
<script src="/html5sortable/jquery.sortable.js"></script>
<script>
$(function() {
$('#sortable1, #sortable2').sortable();
$('#sortable3').sortable({
items: ':not(.disabled)'
});
$('#sortable-with-handles').sortable({
handle: '.handle'
});
$('#sortable4, #sortable5').sortable({
connectWith: '.connected'
});
});
</script>
</BODY>
</HTML>

但即使这样也不起作用。网站上给出的示例运行正常,所以肯定有问题。

我已经正确下载并包含了所有需要下载/包含的文件?

最佳答案

您定义的相对地址中多了一个“/”。删除它。

关于javascript - 可以拖但不能放: jQuery Plug-in,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20501211/

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