码迷,mamicode.com
首页 > 其他好文 > 详细

H5之拖拽

时间:2019-07-18 00:26:23      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:art   utf-8   eve   child   over   body   width   function   rev   

步骤:

  1.为将要拖拽的元素设置允许拖拽,并赋予dragstart事件将其id转换成数据保存;

  2.为容器添加dragover事件阻止浏览器默认事件,并赋予drop事件进行元素的放置。

<html>
<head>
<meta charset="utf-8">
<style>
.box1{
width: 100px;
height: 100px;
border: 1px black solid;
margin-bottom: 20px;
}
.box2{
width: 100px;
height: 100px;
border: 1px black solid;
}
</style>
</head>
<body>
<!-- 参数要传入event对象 -->
<div class="box1" ondragover="allowdrag(event)" ondrop="drop(event)">
<img src="canvas学习/img/2.jpg" alt="00" draggable="true" ondragstart="drag(event)" id="drag" width="50" height="50">
</div>
<div class="box2" ondragover="allowdrag(event)" ondrop="drop(event)"></div>
<script>
function allowdrag(e){
e.preventDefault();
}
function drop(e){
e.preventDefault();
var data = e.dataTransfer.getData("text");
e.target.appendChild(document.getElementById(data));
}
function drag(e){
e.dataTransfer.setData("text",e.target.id);
}
</script>
</body>
</html>

 

H5之拖拽

标签:art   utf-8   eve   child   over   body   width   function   rev   

原文地址:https://www.cnblogs.com/angle-xiu/p/11204512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!