代码搜索:XMLHTTP
找到约 1,050 项符合「XMLHTTP」的源代码
代码结果 1,050
www.eeworm.com/read/433017/8552435
js xmlhttp.js
var xmlHttp;
function createXMLHttpRequest()
{
try
{
xmlHttp=new ActiveXObject('Msxm12.XMLHTTP'); //根据浏览器创建xmlHttp对象
}
catch(e)
{
try
www.eeworm.com/read/426118/10285677
chm xmlhttp 手册.chm
www.eeworm.com/read/464130/7168990
chm xmlhttp 手册.chm
www.eeworm.com/read/299544/7845799
chm xmlhttp.chm
www.eeworm.com/read/434423/7866854
js xmlhttp.js
// Javascript Document
function GetXmlHttp(){
var xmlhttp = false;
try{
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e){
try{
xmlhttp = new ActiveXObject("Microsoft.XMLHT
www.eeworm.com/read/140649/13069783
h xmlhttp.h
#ifndef __XML_HTTP_H__
#define __XML_HTTP_H__
#include
#import "msxml4.dll"
using namespace MSXML2;
class CXMLHttp
{
public:
void Free();
int Init();
CXMLHttp();
~CXM
www.eeworm.com/read/140649/13069789
cpp xmlhttp.cpp
#include "stdafx.h"
#include "xmlhttp.h"
#include "util.h"
#define FILE_LOG_ERR "pudn_spider_err.log"
//int WriteLog(char *log_file, char *format, ...);
CXMLHttp::CXMLHttp()
{
m_pXH =N
www.eeworm.com/read/310104/13658325
chm xmlhttp 手册.chm
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");