1. 程式人生 > >拖拽事件_2

拖拽事件_2

log || spa agen onload win close list pre

  • 技術分享
     1    *{margin: 0;padding: 0;}
     2    li{list-style: none;
     3        height: 30px;
     4        width: 100px;
     5        margin: 10px;
     6        background-color: yellow;}
     7    #div1{
     8         margin: 100px;
     9         height: 100px;
    10         width: 100px;
    11         background-color: red;
    12    }
    View Code
    技術分享
     1 window.onload=function(){
     2     var oUl=document.querySelector("ul");
     3     var aLi=document.getElementsByTagName(‘li‘);
     4     var oDiv=document.getElementById("div1");
     5     var i=0;
     6     for(var i=0;i<aLi.length;i++){
     7          aLi[i].index=i;
     8         aLi[i].ondragstart=function(ev){
    
    9 var ev=ev||event; 10 //dataTransfer.setData():設置數據 key和value(必須是字符串) 11 ev.dataTransfer.setData("index",this.index);; 12 this.style.backgroundColor="red"; 13 } 14 aLi[i].ondrag=function(){ 15 document.title=i++; 16 }
    17 aLi[i].ondragend=function(){ 18 this.style.backgroundColor="teal"; 19 } 20 } 21 22 oDiv.ondragenter=function(){ 23 this.style.background="yellow"; 24 } 25 oDiv.ondragover=function(ev){ 26 var ev=ev||event; 27 ev.preventDefault(); 28 document.title=i++; 29 } 30 oDiv.ondrop=function(ev){ 31 var ev=ev||event; 32 //ev.dataTransfer.getData()獲取數據,根據key值,獲取對應的value 33 //alert(ev.dataTransfer.getData("index")); 34 var index=ev.dataTransfer.getData("index"); 35 oUl.removeChild(aLi[index]); 36 for(var i=0;i<aLi.length;i++){ 37 aLi[i].index=i; 38 } 39 } 40 oDiv.ondragend=function(){ 41 this.style.backgroundColor=""; 42 } 43 44 }
    View Code

    a
  • b
  • c
技術分享

拖拽事件_2