最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

AJAX簡(jiǎn)單應(yīng)用實(shí)例-彈出層

 更新時(shí)間:2008年08月07日 23:51:48   作者:  
AJAX的簡(jiǎn)單應(yīng)用,包括js彈出DIV層、層拖動(dòng)、ajax后臺(tái)讀取數(shù)據(jù)!注意getinfo.asp文件是以u(píng)tf-8格式保存的,在getinfo.asp里面可以寫讀數(shù)據(jù)庫(kù)代碼!
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="請(qǐng)等待,加載中..."; 
  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="出現(xiàn)錯(cuò)誤,錯(cuò)誤代碼為:"+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簡(jiǎn)單應(yīng)用實(shí)例-彈出層.rar

相關(guān)文章

最新評(píng)論

灌阳县| 延安市| 马关县| 白水县| 枣强县| 普洱| 宣恩县| 安泽县| 阿巴嘎旗| 分宜县| 玛纳斯县| 敦煌市| 潮安县| 赫章县| 自治县| 岳阳市| 吴桥县| 陇川县| 海安县| 英吉沙县| 科技| 积石山| 福贡县| 稷山县| 平顶山市| 新竹市| 当涂县| 体育| 绥阳县| 屏东市| 安庆市| 于都县| 筠连县| 礼泉县| 新闻| 松阳县| 琼结县| 大厂| 城市| 兴海县| 博兴县|