var drag1,msg;window.onload=function(){ drag1=document.getElementById("div1"); msg=document.getElementById("msg"); drag1.ondragenter=function(e){ showmsg(e) } }function showmsg(msg){ var s=""; alert("hello"); for(var k in msg){ s+=k+":"+msg[k]+"<br/>"; } msg.innerHTML=s;}
添加回答
举报
0/150
提交
取消