前端学习之二_JS公共库(addLoadEvent,insertAfter,getHttpObject)

//向系统内置的window.onLoad函数,添加处理事件

function addLoadEvent(func){
    var oldOnLoad=window.onload;
    if(typeof window.onload!="function"){
        window.onload=func;
    }else{
        window.onload=function(){
            oldOnLoad();
            func();
        }
    }
}

 

 

//向目标元素targetElement后增添一个新元素newElement 

function insertAfter(newElement,targetElement){
    var parent=targetElement.parentNode;
    if(parent.lastChild==targetElement){
        parent.appendChild(newElement);
    }else{
        parent.insertBefore(newElement,targetElement.nextSibling);
    }
}

 

//获取ajax中的XMLHttpRequest对象,保证各个浏览器的兼容

//获取ajax中的XMLHttpRequest对象,保证各个浏览器的兼容

function getHttpObject(){
    if(typeof XMLHttpRequest=="undefined"){
        XMLHttpRequest=function(){
            try{
                return new ActiveXObject("Msxml2.XMLHttp.6.0");
            }catch(e){}
            try{
                return new ActiveXObject("Msxml2.XMLHttp.3.0");
            }catch(e){}
            try{
                return new ActiveXObject("Msxml2.XMLHttp");
            }catch(e){}
        return false;
        }
    }
    return new XMLHttpRequest();
}

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。