js拖拽的原型聲明和用法總結(jié)
來(lái)源:易賢網(wǎng) 閱讀:806 次 日期:2016-07-08 15:30:19
溫馨提示:易賢網(wǎng)小編為您整理了“js拖拽的原型聲明和用法總結(jié)”,方便廣大網(wǎng)友查閱!

這篇文章主要為大家詳細(xì)介紹了js拖拽的原型聲明和用法總結(jié),感興趣的朋友可以參考一下

下面是自己寫(xiě)的一個(gè)關(guān)于js的拖拽的原型聲明:代碼如下

需要注意的問(wèn)題包括:

1.this的指向到底是指向誰(shuí)--弄清楚所指的對(duì)象

2.call()方法的使用

3.直接將父級(jí)原型賦給子級(jí)與使用for將其賦給子級(jí)有什么區(qū)別?

比如:

代碼如下:

for(var i in Drag.prototype)

{

  LimitDrag.prototype[i]=Drag.prototype[i];----------子級(jí)發(fā)生改變,其父級(jí)并不會(huì)受到影響

}

 LimitDrag.prototype=Drag.prototype;---------直接將原型賦給子級(jí),會(huì)導(dǎo)致當(dāng)子級(jí)發(fā)生改變時(shí),其父級(jí)也會(huì)隨之而改變。

代碼如下:

<html>

<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>拖拽--面向?qū)ο?lt;/title>

<script>

window.onload=function()

{

  new Drag('div1');

  new LimitDrag('div2');

}

function Drag(id)

{

   var _this=this;//這個(gè)this表示p1

   this.disx=0;

   this.disy=0;

   this.oDiv=document.getElementById(id);

   this.oDiv.onmousedown=function(ev){//按下的時(shí)候有個(gè)事件,傳遞給下面的事件

    _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){//移動(dòng)的時(shí)候有個(gè)事件

       _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);//這個(gè)this指LimitDrag new的對(duì)象

}

//得到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>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助。

更多信息請(qǐng)查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機(jī)網(wǎng)站地址:js拖拽的原型聲明和用法總結(jié)
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)