function createobj() { if (window.ActiveXObject) { return(new ActiveXObject("Microsoft.XMLHTTP")); } else if (window.XMLHttpRequest) { return(new XMLHttpRequest()); } } function personalInfo() { var oBao=createobj(); var cont=document.getElementById("person_detial"); var cont_a=document.getElementById("person_content"); cont.style.display='block'; cont.style.cursor='pointer'; cont_a.innerHTML="请等待,加载中..."; var my_url="getinfo.asp?"+Math.random(); oBao.open("get",my_url,true); oBao.onreadystatechange=function(){ if(oBao.readyState==4){ if(oBao.status==200){ cont_a.innerHTML=oBao.responseText; }else{ cont_a.innerHTML="出现错误,错误代码为:"+oBao.status; } } } oBao.send(); } function Drag(id) { var self=this; this.obj=(typeof(id)=="string")?document.getElementById(id):id; this.obj.onmousedown=function(e) { e=e||window.event; var obj=self.obj;//指向自己 if(e.layerX){obj.position={x:e.layerX,y:e.layerY};} else{obj.position={x:e.offsetX,y:e.offsetY};} document.onmousemove=self.start; document.onmouseup=self.end; } this.start=function(e) { e=e||event; document.onselectstart = function(){ return false; }; window.getSelection && window.getSelection().removeAllRanges(); var obj=self.obj; obj.style.left=e.clientX-obj.position.x+"px"; obj.style.top=e.clientY-obj.position.y+"px"; } this.end=function(e) { e=e||event; document.onmousemove = document.onmouseup = document.onselectstart = null; } } AJAX简单应用实例-弹出层.rar
推荐阅读
asp两组字符串数据比较合并相同数据
a1="sp2=20;sp1=34;" a2="sp3=2;sp2=3;sp1=4;" 两组字符串数据,将字符串中相同的数据值相加后得到新的一组数据 即“sp3=2;sp2=23;sp1=38” (p.s 一个简单的应用:商品二原有数量20件,商品一原有数量34件,新进货>>>详细阅读
本文标题:AJAX简单应用实例-弹出层
地址:http://www.17bianji.com/kaifa2/ASP/32179.html
1/2 1