摘要:
View Code 1 window.onload=function() 2 { 3 new Drag('div1'); 4 new LimitDrag('div2'); 5 }; 6 7 function Drag(id) 8 { 9 this.disX=0;10 this.disY=0;11 var _this=this;12 this.oDiv=document.getElementById(id);13 14 this.oDiv.onmousedown=function(ev)15 {16 _t... 阅读全文
摘要:
内置对象(静态对象)是不用通过new来实例化出来的,如:Math.ceil()内置对象(静态对象)Math Global本地对象(非静态对象)是通过new实例化出来的,如:var obj=new Object();常用的本地对象(非静态对象)有:Object Function Array String Boolean Number Date RegExp Error 阅读全文
摘要:
View Code window.onload=function(){ new Tab('div1');};function Tab(id){ var _this=this; var oDiv=document.getElementById(id); this.aBtn=oDiv.getElementsByTagName('input'); this.aDiv=oDiv.getElementsByTagName('div'); for(var i=0;i<this.aBtn.length;i++) { ... 阅读全文