代码搜索:XMLHttpRequest
找到约 1,082 项符合「XMLHttpRequest」的源代码
代码结果 1,082
www.eeworm.com/read/283318/9030024
js newajax.js
/**
ajax code
*/
var xml_http_building_link = '请等待,正在建立连接...';
var xml_http_sending = '请等待,正在发送数据...';
var xml_http_loading = '请等待,正在接受数据...';
var xml_http_load_failed = '通信失败,请刷新重新尝试';
var xm
www.eeworm.com/read/283318/9030054
js blog.js
/**
ajax code
*/
var xml_http_building_link = '请等待,正在建立连接...';
var xml_http_sending = '请等待,正在发送数据...';
var xml_http_loading = '请等待,正在接受数据...';
var xml_http_load_failed = '通信失败,请刷新重新尝试';
var xm
www.eeworm.com/read/283318/9030098
js newajax.js
/**
ajax code
*/
var xml_http_building_link = '请等待,正在建立连接...';
var xml_http_sending = '请等待,正在发送数据...';
var xml_http_loading = '请等待,正在接受数据...';
var xml_http_load_failed = '通信失败,请刷新重新尝试';
var xm
www.eeworm.com/read/379687/9186988
htm crossbrowserxmlhttprequestexample.htm
XML HTTP Request Example
if (typeof XMLHttpRequest == "undefined" && window.ActiveXObject
www.eeworm.com/read/378002/9254439
htm crossbrowserxmlhttprequestexample.htm
XML HTTP Request Example
if (typeof XMLHttpRequest == "undefined" && window.ActiveXObject
www.eeworm.com/read/179156/9368051
js requestbuilder.js
AttackAPI.RequestBuilder = {};
AttackAPI.RequestBuilder.build = function () {
var request;
if (window.XMLHttpRequest) {
request = new XMLHttpRequest();
} else if (window.createRequest) {
www.eeworm.com/read/372902/9488705
js the.js
function showCustomer()
{
var xmlHttp=getxmlhttp();
var url=""
url="111.txt";
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("post",url,true);
xmlHttp.send(null);
}
function getxm
www.eeworm.com/read/164416/10109310
js ajax.js
function InitAjax()
{
var ajax=false;
try {
ajax = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
ajax = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
www.eeworm.com/read/163092/10175167
js up.js
//----------------------------------------------------------------------------
//FreeXproxy Version: beta 2
//Author: A&Y
//
//Script Function:
// Automatic Gain Proxy Lis
www.eeworm.com/read/426161/10277913
js script02.js
window.onload = initAll;
var xhr = false;
function initAll() {
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
}
else {
if (window.ActiveXObject) {
try {
xhr = new ActiveXObjec