代码搜索:XMLHttpRequest
找到约 1,082 项符合「XMLHttpRequest」的源代码
代码结果 1,082
www.eeworm.com/read/367326/2846482
js taconite-client.js
/**
@fileoverview
This JavaScript file represents the core browser-side functionality
supplied by Taconite. In general, the tools in this file wrap an instance
of XMLHttpRequest object
www.eeworm.com/read/260282/4334510
js taconite-client.js
/**
@fileoverview
This JavaScript file represents the core browser-side functionality
supplied by Taconite. In general, the tools in this file wrap an instance
of XMLHttpRequest object
www.eeworm.com/read/429136/8817090
js h_js.js
// JavaScript Document
var xmlHttp;
function createXMLHttpRequest(){
if(window.ActiveXObject){
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}else if(window.XMLHttpRequest){
xmlHttp
www.eeworm.com/read/305789/13760927
js xmlhttp.js
// JScript 文件
var request;
function createRequest() {
try {
request = new XMLHttpRequest();
} catch (trymicrosoft) {
try {
request = new ActiveXObject("Msxml2.XMLHTTP");
www.eeworm.com/read/224251/4805462
js ajax.js
var xmlHttp;
function createXMLHttpRequest() {
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest) {
xmlHttp = new X
www.eeworm.com/read/389332/2541129
js drag-and-drop.js
// holds an instance of XMLHttpRequest
var xmlHttp = createXmlHttpRequestObject();
// when set to true, display detailed error messages
var showErrors = true;
// initialize the requests cache
va
www.eeworm.com/read/389332/2541164
js proxyping.js
// holds an instance of XMLHttpRequest
var xmlHttp = createXmlHttpRequestObject();
// holds the remote server address and parameters
var serverAddress = "proxyping.php";
var serverParams = "&min=1
www.eeworm.com/read/377649/2698526
js ajax.js
var xmlHttp;
function createXMLHttpRequest() {
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}else if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpReq
www.eeworm.com/read/390818/8439479
js ajax.js
function checkcode(){
getinfo();
var xmlhttp;
try{
xmlhttp=new XMLHttpRequest();
}
catch(e){
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function
www.eeworm.com/read/485834/6547923
js ajax.js
function checkcode(){
getinfo();
var xmlhttp;
try{
xmlhttp=new XMLHttpRequest();
}
catch(e){
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function