代码搜索:XmlHttpRequest
找到约 1,082 项符合「XmlHttpRequest」的源代码
代码结果 1,082
www.eeworm.com/read/393735/2464621
js user.js
if (window.ActiveXObject && !window.XMLHttpRequest) {
window.XMLHttpRequest=function() {
return new ActiveXObject((navigator.userAgent.toLowerCase().indexOf('msie 5') != -1)?'Microsoft.
www.eeworm.com/read/392346/2502093
js xml.js
var TDXml = function()
{}
TDXml.prototype.GetHttpRequest = function()
{
// Gecko / IE7
if ( typeof(XMLHttpRequest) != 'undefined' )
return new XMLHttpRequest() ;
// IE6
try { retur
www.eeworm.com/read/235668/14056498
js xhr.js
if (!window.XMLHttpRequest)
{
window.XMLHttpRequest = function()
{
var xmlHttp = null;
var ex;
try
{
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP.4.0");
}
catch (ex)
{
www.eeworm.com/read/443995/1736939
js register.js
var xmlHttp = window.XMLHttpRequest?(new XMLHttpRequest()):(new ActiveXObject("Microsoft.XMLHTTP"));
function change(name)
{
document.getElementById(name).value=document.getElementById(name).
www.eeworm.com/read/346399/11751337
js js.js
function showpics(file){
var xmlObj3 = null;
if(window.XMLHttpRequest){
xmlObj3 = new XMLHttpRequest();
} else if(window.ActiveXObject){
xmlObj3 = new Activ
www.eeworm.com/read/191759/5162659
js fckxml.js
var FCKXml = function () {};FCKXml.prototype.GetHttpRequest = function () {if (window.XMLHttpRequest) {return new XMLHttpRequest();} else {if (window.ActiveXObject) {return new ActiveXObject("MsXml2.X
www.eeworm.com/read/428887/8830978
js form.js
/* 23nov07abu
* (c) Software Lab. Alexander Burger
*/
/*** Request object ***/
var FormReq;
if (window.XMLHttpRequest) {
try {FormReq = new XMLHttpRequest();}
catch (e) {FormReq = false;}
}
www.eeworm.com/read/471054/1433755
js callxmlhttprequest.js
function FactoryXMLHttpRequest(){
if(window.XMLHttpRequest){
return new XMLHttpRequest();
}else if(window.ActiveXObject){
var msxmls = new Array('Msxml2.XMLHTTP.5.0','Msxml2.XMLHTTP.4.
www.eeworm.com/read/246736/4492186
js update.js
var update_http_request = false;
function update_send_request(url)
{
update_http_request = false;
if(window.XMLHttpRequest)
{
update_http_request = new XMLHttpRequest
www.eeworm.com/read/331990/3402293
js 29-1.js
// XML document
var xDoc;
// retrieve XML document as document object
function loadXMLDoc(url) {
var req;
if (window.XMLHttpRequest) {
req = new XMLHttpRequest();
req.open("GET", url, f