代码搜索:XMLHTTP
找到约 1,050 项符合「XMLHTTP」的源代码
代码结果 1,050
www.eeworm.com/read/259906/11758043
js postdata.js
var xmlHttp=createXmlHttpRequestObject();
function createXmlHttpRequestObject()
{
var xmlHttp;
try
{
xmlHttp=new XMLHttpRequest();
}
catch(e)
{
var XmlHttpVersions=new Array('MSXML2.XMLHTTP.
www.eeworm.com/read/393656/8271507
js xmlhttprequest.js
/* Create a new XMLHttpRequest object to talk to the Web server */
var xmlHttp = false;
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlHttp = new ActiveX
www.eeworm.com/read/411929/11220877
js ajaxfunctions.js
//Global variables
var timeID;
var refreshRate = 2000; // two seconds
var rnd = Math.random();
var isFirefox;
var isIE;
//var XmlHttp;
var AjaxServerPageName;
AjaxServerPageName = "Server.
www.eeworm.com/read/265536/11261992
js ajaxfunctions.js
// JScript 文件
//Global variables
var timeID;
var refreshRate = 2000; // two seconds
var rnd = Math.random();
var isFirefox;
var isIE;
//var XmlHttp;
var AjaxServerPageName;
AjaxServerP
www.eeworm.com/read/459376/7276450
hta 22-1 使用ajax无刷新的获取页面.hta
22-1 使用Ajax无刷新的获取页面
* { font-size:12px; font-f
www.eeworm.com/read/452492/7439161
bas stock_realtime.bas
Sub 获取股票实时价格()
'要求
Dim xmlhttp As MSXML2.XMLHTTP30
Set xmlhttp = New XMLHTTP30
Sheets("资金明细").Select
'Cells.Select
List = "sh000001,sz000001":'股票代码列表,用逗号分开
xmlhttp.Open "GET", "http
www.eeworm.com/read/422731/10615224
htm 22.7 使用xmlhttp获取天气预报.htm
天气预报
var xmlhttp;
function getWeather()
{
//创建异步对象
xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
www.eeworm.com/read/418162/10962726
htm 22.7 使用xmlhttp获取天气预报.htm
天气预报
var xmlhttp;
function getWeather()
{
//创建异步对象
xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
www.eeworm.com/read/281767/9136204
txt xmlhttprequest.txt
/*
Name: 创建xmlHttpRequest对象
Author: shemily
Create: 2007-04-29
Version: 1.0
Language: Javascript
*/
/* Create a new XMLHttpRequest object to talk to the Web server */
var xmlHttp = false
www.eeworm.com/read/281767/9136205
js xmlhttprequest.js
/* Create a new XMLHttpRequest object to talk to the Web server */
var xmlHttp = false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catc