用jquery怎样写拖拽且添加元素的效果?
Admin 2021-10-13 群英技术资讯 601 次浏览
这篇文章给大家分享的是有关用jquery实现拖拽元素的内容,小编觉得挺实用的,因此分享给大家做个参考。本文要实现的要求的是拖拽且添加元素的功能,接下来一起跟随小编看看怎样写吧。
需求
1.页面上有两个不同的容器,拖拽a容器的元素添加到b容器中;
2.a保持原位不dogn动,b增加新的元素,要实现的效果如下:
3.点击b容器中的元素移除元素
首先准备两个容器
页面效果如下
<div class="bigBox"> <div id="aBox"> <p class="drag" draggable="true" data-id="我是a元素的第一个">我是a元素</p> <p class="drag" draggable="true" data-id="我是a元素的第二个">我是a元素</p> <p class="drag" draggable="true" data-id="我是a元素的第三个">我是a元素</p> <p class="drag" draggable="true" data-id="我是a元素的第四个">我是a元素</p> </div> <div id="bBox"> </div> </div>
在css中定义好样式,区分两个容器
.bigBox { display: flex; width: 100%; height: 400px; } #aBox { width: 40%; height: 100%; background-color: pink; } #aBox > p { line-height: 30px; padding: 4px; background-color: yellow; } #bBox { width: 40%; height: 100%; background-color: #00BCF4; } .span { border: 1px slid #ccc; border-radius: 12px; display: inline-block; padding: 3px; background-color: red; }
封装一个添加元素的方法
function add(addId, htmlId) { var listItem = { // 接收绑定的属性值,并赋值给数组的某一项 name: addId } var obj = {}; var html = '' coloList.push(listItem) coloList = coloList.reduce(function(item, next) { // 对数组进行去重处理 obj[next.name] ? '' : obj[next.name] = true && item.push(next); return item; }, []); for (var i = 0; i < coloList.length; i++) { // 对去重后的数组渲染到页面 html += '<span draggable="true" class="span" data-id=' + coloList[i].name + ' >' + coloList[i].name + '</span>' } htmlId.html(html) // b容器要展示的数据 }
以下是拖拽的方法函数
var coloList = [] $(document).on('dragstart', '.drag', function(e) { // 拖拽事件绑定到元素上 var dudataId = $(this).attr("data-id") // 获取到元素绑定的属性值 $(document).on('dragenter', '#bBox', function() { }) $(document).on('dragover', '#bBox', function() { // 这行代码一定要有,阻止事件的默认行为,才能触发鼠标放下的事件 event.preventDefault() }) $('#bBox').on('drop', function(e) { // // 鼠标放下事件被触发把元素添加到bbox中 add(dudataId, $('#bBox')) }) $(document).on('drop', '#bBox', function() { // 定时器解绑事件,不然会一直绑定事件,重复添加数据 var timer = setInterval(function() { $('#bBox').off('dragover') $('#bBox').off('dragenter') $('#bBox').off('drop') clearInterval(timer); }, 30) }) })
移除bbox的事件的方法
function remove(removeId, htmlId) { console.log(removeId, htmlId) var index = -1 var html = '' // var list = coloList for (var k = 0; k < coloList.length; k++) { if (removeId === coloList[k].name) { index = k break } else { index = -1 } } if (index != -1) { coloList.splice(index, 1) // coloList = list for (var i = 0; i < coloList.length; i++) { // 对去重后的数组渲染到页面 html += '<span class="span" data-id=' + coloList[i].name + '>' + coloList[i].name + '</span>' } htmlId.html(html) } else { alert('暂无可移除的维度') } }
绑定点击事件
$('#bBox').on('click', '.span', function(e) { remove($(this).attr("data-id"), $('#bBox')) // 参数:动态添加的属性值当前点击的元素,度量列表,维度html })
这样就完成了呀。
以下是完整的代码:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .bigBox { display: flex; width: 100%; height: 400px; } #aBox { width: 40%; height: 100%; background-color: pink; } #aBox > p { line-height: 30px; padding: 4px; background-color: yellow; } #bBox { width: 40%; height: 100%; background-color: #00BCF4; } .span { border: 1px slid #ccc; border-radius: 12px; display: inline-block; padding: 3px; background-color: red; } </style> </head> <body> <div class="bigBox"> <div id="aBox"> <p class="drag" draggable="true" data-id="我是a元素的第一个">我是a元素</p> <p class="drag" draggable="true" data-id="我是a元素的第二个">我是a元素</p> <p class="drag" draggable="true" data-id="我是a元素的第三个">我是a元素</p> <p class="drag" draggable="true" data-id="我是a元素的第四个">我是a元素</p> </div> <div id="bBox"> </div> </div> <script src="jquery.js" type="text/javascript" charset="utf-8"></script> <script type="text/javascript"> var coloList = [] $(document).on('dragstart', '.drag', function(e) { var dudataId = $(this).attr("data-id") $(document).on('dragenter', '#bBox', function() { }) $(document).on('dragover', '#bBox', function() { event.preventDefault() }) $('#bBox').on('drop', function(e) { add(dudataId, $('#bBox')) }) $(document).on('drop', '#bBox', function() { var timer = setInterval(function() { $('#bBox').off('dragover') $('#bBox').off('dragenter') $('#bBox').off('drop') clearInterval(timer); }, 30) }) }) $('#bBox').on('click', '.span', function(e) { remove($(this).attr("data-id"), $('#bBox')) // 参数:动态添加的属性值当前点击的元素,度量列表,维度html }) function add(addId, htmlId) { var listItem = { // 接收绑定的属性值,并赋值给数组的某一项 name: addId } // list.push(weiduListItem) var obj = {}; var html = '' // className = 'remove' coloList.push(listItem) coloList = coloList.reduce(function(item, next) { // 对数组进行去重处理 obj[next.name] ? '' : obj[next.name] = true && item.push(next); return item; }, []); for (var i = 0; i < coloList.length; i++) { // 对去重后的数组渲染到页面 html += '<span draggable="true" class="span" data-id=' + coloList[i].name + ' >' + coloList[i].name + '</span>' } // weiduList = lis htmlId.html(html) // 维度的数组 } // // 移除页面中维度和度量的元素 function remove(removeId, htmlId) { console.log(removeId, htmlId) var index = -1 var html = '' // var list = coloList for (var k = 0; k < coloList.length; k++) { if (removeId === coloList[k].name) { index = k break } else { index = -1 } } if (index != -1) { coloList.splice(index, 1) // coloList = list for (var i = 0; i < coloList.length; i++) { // 对去重后的数组渲染到页面 html += '<span class="span" data-id=' + coloList[i].name + '>' + coloList[i].name + '</span>' } htmlId.html(html) } else { alert('暂无可移除的维度') } } </script> </body> </html>
关于用jquery实现拖拽且添加元素的内容就介绍到这,上述实例具有一定的借鉴价值,感兴趣的朋友可以参考学习,希望能对大家有帮助,想要了解更多jquery拖拽元素的实现,大家可以关注群英网络其它相关文章。
文本转载自脚本之家
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
拖拽元素的需求还是比较常见的,之前我们也了解过拖拽元素,这篇文章给大家分享的是用jQuery实现容器间的元素拖拽效果,具体怎样做呢?我们直接看代码:
本文主要介绍了node连接mysql查询事务处理的实现,文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
组件封装是为了复用,换成大白话就是,同样的事情我不想做第二遍,节省出来的时间用来看动漫不香吗,下面这篇文章主要给大家介绍了关于vue封装TabBar组件的完整步骤,需要的朋友可以参考下
newArray(arg1,arg2,…),当参数长度为0或大于等于2时,传入的参数将依次成为新数组的第0至第N项。newArray(len),当len不是数值时,返回一个只包含len元素的数组。
移动端网页的日常开发中,偶尔会包含一些渲染长列表的场景,本文主要介绍了vue 虚拟滚动,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008