查遗备缺的js例子(会慢慢扩充)

	var xmlRequest;
	function createXMLRequest(){
		if(window.XMLHttpRequest){
			xmlRequest=new XMLHttpRequest();
		}
		else if(window.ActiveXObject){
			try{
				xmlRequest=new ActiveXObject("Msxml2.XMLHTTP")
			}catch(err){
				try{
					xmlRequet=new AcrtiveXObject("Microsoft.XMLHTTP");
				}catch(e){
					
				}
			}
		}
	}

你可能感兴趣的:(js)