代码搜索:XMLHttpRequest

找到约 1,082 项符合「XMLHttpRequest」的源代码

代码结果 1,082
www.eeworm.com/read/265391/4282273

js adminarticle.js

var XMLHttpReq; //创建XMLHttpRequest对象 function createXMLHttpRequest() { if(window.XMLHttpRequest) { //Mozilla 浏览器 XMLHttpReq = new XMLHttpRequest(); } else if (window.ActiveXObj
www.eeworm.com/read/265391/4282275

js adminsort.js

var XMLHttpReq; //创建XMLHttpRequest对象 function createXMLHttpRequest() { if(window.XMLHttpRequest) { //Mozilla 浏览器 XMLHttpReq = new XMLHttpRequest(); } else if (window.ActiveXObj
www.eeworm.com/read/327805/3453580

js ajax.js

var http_request; //创建XMLHttpRequest对象 function createXMLHttpRequest() { if (window.XMLHttpRequest) { //Mozilla 浏览器 http_request = new XMLHttpRequest(); } else { i
www.eeworm.com/read/282099/4110150

js ajax.js

var XMLHttpReq; function createXMLHttpRequest(){ //创建XMLHttpRequest对象 if(window.XMLHttpRequest){ //创建Mozilla浏览器对象 XMLHttpReq = new XMLHttpRequest(); } else if (window.ActiveX
www.eeworm.com/read/376485/2709771

js checkclass.js

//声明XMLHttpRequest对象 var xmlHttp; //创建XMLHTTP对象 function createXMLHTTP() { if(window.XMLHttpRequest) { xmlHttp=new XMLHttpRequest();//mozilla浏览器 } else if(window.Acti
www.eeworm.com/read/389332/2541175

js quickstart.js

// stores the reference to the XMLHttpRequest object var xmlHttp = createXmlHttpRequestObject(); // retrieves the XMLHttpRequest object function createXmlHttpRequestObject() { // will stor
www.eeworm.com/read/367550/9742859

php hall.php

www.eeworm.com/read/202497/15381156

am makefile.am

# Process this file with automake to produce Makefile.in NULL = AM_CPPFLAGS = @DEFS@\ -I$(top_srcdir)/khtml \ -I$(top_srcdir)/khtml/dom \ -I$(top_srcdir)/khtml/css \ -I$(top_srcdir)/khtml/html \
www.eeworm.com/read/474598/1392810

js ajax.js

//创建 XMLHttpRequest 对象 function createRequest() { var http_request = false; if (window.XMLHttpRequest) { http_request = new XMLHttpRequest(); if (http_request.overrideMimeType) { http_reques
www.eeworm.com/read/475808/6778659

js common.js

//创建xmlHttp function getxmlHttp() { xmlHttp = false; if (window.XMLHttpRequest) { //对于Mozilla﹑Netscape﹑Safari等浏览器,创建XMLHttpRequest xmlHttp = new XMLHttpRequest(); if (xmlHttp.overrideMimeType) {