下面是自己写的一个关于js的拖拽的原型声明:代码如下

需要注意的问题包括:

1.this的指向到底是指向谁--弄清楚所指的对象

2.call()方法的使用

3.直接将父级原型赋给子级与使用for将其赋给子级有什么区别?

比如:for(var i in Drag.prototype)
{
    LimitDrag.prototype[i]=Drag.prototype[i];----------子级发生改变,其父级并不会受到影响
}

LimitDrag.prototype=Drag.prototype;---------直接将原型赋给子级,会导致当子级发生改变时,其父级也会随之而改变。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
#div1 {width:100px; height:100px; background:red; position:absolute;}
#div2 {width:100px; height:100px; background:yellow; position:absolute;}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>拖拽--面向对象</title>
<script>
window.onload=function()
{
    new Drag('div1');
    new LimitDrag('div2');
}
function  Drag(id)
{
     var _this=this;//这个this表示p1
     this.disx=0;
     this.disy=0;
     this.oDiv=document.getElementById(id);
     this.oDiv.onmousedown=function(ev){//按下的时候有个事件,传递给下面的事件
        _this.fnDown(ev);
        return false;
     }
};
Drag.prototype.fnDown=function(ev)
{
        var _this=this;
        var oEvent=ev||event;
        this.disx=oEvent.clientX-this.oDiv.offsetLeft;
        this.disy=oEvent.clientY-this.oDiv.offsetTop;
        document.onmousemove=function(ev){//移动的时候有个事件
              _this.fnMove(ev);
        }
        document.onmouseup=function(){
             _this.fnUp();
        }
};  
 Drag.prototype.fnMove=function(ev)
{
            var oEvent=ev||event;
            this.oDiv.style.left=oEvent.clientX-this.disx+'px';
            this.oDiv.style.top=oEvent.clientY-this.disy+'px';
};
Drag.prototype.fnUp=function()
{
         document.onmousemove=null;
         document.onmouseup=null;
};
//继承Drag的所有属性
function LimitDrag(id)
{
        Drag.call(this,id);//这个this指LimitDrag new的对象
}
//得到Drag的方法,遍历其原型
for(var i in Drag.prototype)
{
    LimitDrag.prototype[i]=Drag.prototype[i];
}
//改变Drag的fnMove的方法
LimitDrag.prototype.fnMove=function(ev)
{
    var oEvent=ev||event;
    var l=oEvent.clientX-this.disx;
    var t=oEvent.clientY-this.disy;
    if(l>document.documentElement.clientWidth-this.oDiv.offsetWidth)
    {
        l=document.documentElement.clientWidth-this.oDiv.offsetWidth;
    }
    else if(l<0)
    {
        l=0;
    }
     if(t>document.documentElement.clientHeight-this.oDiv.offsetHeight)
    {
        t=document.documentElement.clientHeight-this.oDiv.offsetHeight;
    }
    else if(t<0)
    {
        t=0;
    }
     this.oDiv.style.left=l+'px';
     this.oDiv.style.top=t+'px';
}
</script>
</head>
<body>
<div id="div1">
</div>
<div id="div2">
</div>
</body>
</html>

最新文章

  1. BZOJ1500: [NOI2005]维修数列[splay ***]
  2. 关于RequireJS与AngularJS的集成文档
  3. Cogs 14. [网络流24题] 搭配飞行员
  4. Redis应用配置项说明
  5. Linux命令行
  6. 在ASP.NET MVC5中建置以角色为基础的授权机制
  7. Linux Unix 环境变量设置实例
  8. CentOS下安装MySQL
  9. java 10-4 Scanner方法
  10. HDU 1087 Super Jumping! Jumping! Jumping
  11. Awk中调用shell命令
  12. Linux实战教学笔记17:精简shell基础
  13. 如何使用svn命令行更新想要的目录?
  14. SpriteKit游戏开发 Challenge 2: An invincible zombie 问题的另一种解决方法
  15. OpenProject基础使用介绍
  16. emwin之在中断服务程序中创建窗口的结果
  17. 20155312 张竞予 Exp7 网络欺诈防范
  18. python设计模式第二十五天【访问者模式】
  19. Shell基础知识(四)
  20. C++中的字符数组与字符指针

热门文章

  1. 改变mvc web api 支持android ,ios ,ajax等方式跨域调用
  2. 帝吧出征FB:这李毅吧的“爆吧”文化是如何形成的
  3. Android使用默认样式创建View的几个姿势
  4. C++调用C#dll类库中的方法(非显性COM)
  5. 案例分享:电信行业零售业务CRM架构
  6. 实践GTD三周年后的体会
  7. 2、IOS开发--iPad之仿制QQ空间 (初始化HomeViewController子控件视图)
  8. JSON取值前判断
  9. 深入理解java虚拟机(7)---线程安全 &amp; 锁优化
  10. android文件存储位置切换