代码搜索:XmlHttpRequest
找到约 1,082 项符合「XmlHttpRequest」的源代码
代码结果 1,082
www.eeworm.com/read/113473/15455566
frm form1.frm
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic
www.eeworm.com/read/113473/15455599
frm form1.frm
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic
www.eeworm.com/read/483893/6597303
js check_digg.js
var xmlHttp;
function Ajax_Begin(){
if (window.ActiveXObject){
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest){
xmlHttp=new XMLHttpRequest();
}
}
www.eeworm.com/read/369845/9631911
js ajax_functions.js
//创建对象
function create_obj(){
var http_request = false;
//开始初始化XMLHttpRequest对象
if(window.XMLHttpRequest) { //Mozilla 浏览器
http_request = new XMLHttpRequest();
if (http_req
www.eeworm.com/read/474598/1392800
js ajax.js
var xmlHttpRequest;
//当前对象ID
var objId;
//要操作的对象ID
var targetId;
//创建xmlHttpRequest对象
function createObject() {
if (window.XMLHttpRequest) {//非IE浏览器
xmlHttpRequest = new XMLHttpRequest();
i
www.eeworm.com/read/465785/1516756
js createxmlhttprequest.js
// 创建XMLHttpRequest对象
function createXMLHttpRequest()
{
var xmlRequest = false;
//开始初始化XMLHttpRequest对象
if(window.XMLHttpRequest)
{ //Mozilla 浏览器
xmlRequest = new XMLHttpRequest(
www.eeworm.com/read/450196/7488970
js ajax_post.js
// JScript 文件
//以POST方式异步发送请求函数
//@param1 : 请求URL
//@param2 : 指定回调函数
//@param3 : 指定发送对象
function XMLHttpRequestSend_POST(Url,Call_back,Obj)
{
CreateXMLHttpRequest()
if (XMLHttpRequest){
www.eeworm.com/read/137696/5819516
h stdafx.h
/*
* Copyright 1999-2000,2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License
www.eeworm.com/read/493492/1166314
js index.js
var XMLHttpReq;
//创建XMLHttpRequest对象
function createXMLHttpRequest() {
if (window.XMLHttpRequest) { //Mozilla 浏览器
XMLHttpReq = new XMLHttpRequest();
} else {
if (wind