js拖拽的原型聲明和用法總結(jié)
下面是自己寫的一個(gè)關(guān)于js的拖拽的原型聲明:代碼如下
需要注意的問題包括:
1.this的指向到底是指向誰--弄清楚所指的對象
2.call()方法的使用
3.直接將父級原型賦給子級與使用for將其賦給子級有什么區(qū)別?
比如:
for(var i in Drag.prototype)
{
LimitDrag.prototype[i]=Drag.prototype[i];----------子級發(fā)生改變,其父級并不會(huì)受到影響
}
LimitDrag.prototype=Drag.prototype;---------直接將原型賦給子級,會(huì)導(dǎo)致當(dāng)子級發(fā)生改變時(shí),其父級也會(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的對象
}
//得到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>
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助。
- javascript實(shí)現(xiàn)PC網(wǎng)頁里的拖拽效果
- javascript實(shí)現(xiàn)移動(dòng)端上的觸屏拖拽功能
- JS拖拽組件學(xué)習(xí)使用
- JS組件Bootstrap Table表格多行拖拽效果實(shí)現(xiàn)代碼
- JS組件Bootstrap Table表格行拖拽效果實(shí)現(xiàn)代碼
- 基于jQuery實(shí)現(xiàn)拖拽圖標(biāo)到回收站并刪除功能
- js實(shí)現(xiàn)圖片放大和拖拽特效代碼分享
- 原生js實(shí)現(xiàn)自由拖拽彈窗代碼demo
- 基于React.js實(shí)現(xiàn)原生js拖拽效果引發(fā)的思考
- JS HTML5實(shí)現(xiàn)拖拽移動(dòng)列表效果
相關(guān)文章
JS動(dòng)態(tài)加載當(dāng)前時(shí)間的方法
這篇文章主要介紹了JS動(dòng)態(tài)加載當(dāng)前時(shí)間的方法,涉及html的onload方法及javascript操作時(shí)間的技巧,需要的朋友可以參考下2015-02-02
JavaScript Event學(xué)習(xí)第三章 早期的事件處理程序
在這一章我會(huì)談到一些最古老的添加事件處理程序的方法,這些方法甚至被第二代瀏覽器所支持。2010-02-02
div浮層,滾動(dòng)條移動(dòng),位置保持不變的4種方法匯總
這篇文章主要是對div浮層,滾動(dòng)條移動(dòng),位置保持不變的4種方法進(jìn)行了匯總介紹,需要的朋友可以過來參考下,希望對大家有所幫助2013-12-12
javascript實(shí)現(xiàn)點(diǎn)亮燈泡特效示例
這篇文章主要介紹了javascript實(shí)現(xiàn)點(diǎn)亮燈泡特效示例,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-10-10

