码迷,mamicode.com
首页 > Web开发 > 详细

js基础拖拽

时间:2016-04-26 00:29:30      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

	var oDiv= document.getElementById("div");
	oDiv.onmousedown= function(e){
		var _this = this;
		var e= e || window.event;
		var diffX= e.clientX - _this.offsetLeft;
		var diffY= e.clientY - _this.offsetTop;
	     document.onmousemove= function(e){
			 var e= e || window.event;
			 _this.style.left= e.clientX -diffX + "px";
			 _this.style.top= e.clientY -diffY + "px";
		 
		 }
		 document.onmouseup= function(e){
			 this.onmousemove= null
			 this.onmouseup= null
		 }
	}

 

js基础拖拽

标签:

原文地址:http://www.cnblogs.com/fangxuele/p/5433305.html

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