我想在从可排序列表中拖动时更改项目的宽度
我需要在从可排序列表中拖动时更改项目的宽度。
这里使用下面的jquery
$(function() {
$( ".dropfalse" ).sortable({
connectWith: ".dropfalse",
revert: true,
tolerance: 'pointer'
}).disableSelection();
$('#sortable1 li').draggable({
connectToSortable: ".dropfalse",
helper: "clone",
});
});
I need to change the width of the item while dragging from the sortable lists.
Here am using below jquery
$(function() {
$( ".dropfalse" ).sortable({
connectWith: ".dropfalse",
revert: true,
tolerance: 'pointer'
}).disableSelection();
$('#sortable1 li').draggable({
connectToSortable: ".dropfalse",
helper: "clone",
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
拖动时您可以使用 $("selector").css("property","value"); 修改 CSS
while dragging you can modify the CSS using $("selector").css("property","value");