代码搜索:XMLHTTP
找到约 1,050 项符合「XMLHTTP」的源代码
代码结果 1,050
www.eeworm.com/read/494328/6382316
js hint.js
function Hint(){
var xmlHttp;
try{
xmlHttp=new ActiveXObject('Msxml2.XMLHTTP');
}catch(e){
try{
xmlHttp=new ActiveXObject('Microsoft.XMLHTTP');
}catch(e){
try{
xml
www.eeworm.com/read/485073/6572127
js ajaxobjects.js
//CONSTANTS ARE PLACED IN THE CONSTANTS.JS FILE
//Get the browser type
var is_ie = (navigator.userAgent.indexOf('MSIE') >= 0) ? 1 : 0;
var is_ie5 = (navigator.appVersion.indexOf
www.eeworm.com/read/482545/6617509
js callbackobject.js
function CallBackObject()
{
this.XmlHttp = this.GetHttpObject();
}
CallBackObject.prototype.GetHttpObject = function()
{
var xmlhttp;
/*@cc_on
@if (@_jscript_version >= 5)
try
www.eeworm.com/read/410644/11273482
js ajax.js
//Ajax 主程序类
function $(id)
{
return document.getElementById(id);
}
function echo(obj,html)
{
$(obj).innerHTML=html;
}
//创建xmlhttp对象
function createxmlhttp()
{
var xmlhttp=false;
try
www.eeworm.com/read/291303/8426076
js getxml.js
// JavaScript Document
if (window.ActiveXObject && !window.XMLHttpRequest) {
window.XMLHttpRequest = function() {
var MSXML = ['Msxml2.XMLHTTP.5.0','Msxml2.XMLHTTP.4.0','Msxml2.XMLHTTP.3.0','Ms
www.eeworm.com/read/353007/10483771
js ajax.js
// JavaScript Document
var XMLHttp = null;
function createXMLHttp(){
if(!XMLHttp){
if(window.XMLHttpRequest){
XMLHttp = new XMLHttpRequest();
}else if(window.ActiveXObject){
try{
www.eeworm.com/read/422731/10615207
htm 22.9 避免打开无效页面.htm
标题页
function getURL(url)
{
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");//创建XMLH
www.eeworm.com/read/418162/10962714
htm 22.9 避免打开无效页面.htm
标题页
function getURL(url)
{
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");//创建XMLH
www.eeworm.com/read/458101/7309340
asp@filename=try_dom_httpsuggest tryit_view.asp@filename=try_dom_httpsuggest
xmlHttp=null;
function showHint(str)
{
if (str.length==0)
{
document.getElementById("txtHint").innerHTML="";
return;
}
try
{//
www.eeworm.com/read/458101/7311551
js selectcustomer.js
var xmlHttp
function showCustomer(str)
{
xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
{
alert ("Your browser does not support AJAX!");
return;
}
var url="getcustomer.asp"