代码搜索:XmlHttpRequest
找到约 1,082 项符合「XmlHttpRequest」的源代码
代码结果 1,082
www.eeworm.com/read/441733/1768607
js ajax.js
// JScript source code
function ajaxRead(file,fun){
var xmlObj = null;
if(window.XMLHttpRequest){
xmlObj = new XMLHttpRequest();
} else if(window.ActiveXObject){
xmlObj =
www.eeworm.com/read/192928/8263742
js public.js
if(typeof(XMLHttpRequest) == 'undefined')
var XMLHttpRequest = function()
{
var request = null;
try
{
request = new ActiveXObject('Msxml2.XMLHTTP');
}
catch(e)
{
try
{
requ
www.eeworm.com/read/470634/6905317
js ajax_form.js
if (!window.XMLHttpRequest) {
window.XMLHttpRequest=function (){
return new ActiveXObject("Microsoft.XMLHTTP");
}
}
//@desc load a page(some html) via xmlhttp,and display on a container
/
www.eeworm.com/read/470634/6905358
js ajax_form.js
if (!window.XMLHttpRequest) {
window.XMLHttpRequest=function (){
return new ActiveXObject("Microsoft.XMLHTTP");
}
}
//@desc load a page(some html) via xmlhttp,and display on a container
/
www.eeworm.com/read/470634/6905361
js ajax_form.js
if (!window.XMLHttpRequest) {
window.XMLHttpRequest=function (){
return new ActiveXObject("Microsoft.XMLHTTP");
}
}
//@desc load a page(some html) via xmlhttp,and display on a container
/
www.eeworm.com/read/474598/1392929
js ajax.js
//创建XMLHtmlRequest类
function createRequest() {
var http_request = false;
if (window.XMLHttpRequest)
{
http_request = new XMLHttpRequest();
if (http_request.overrideMimeType)
www.eeworm.com/read/428378/1960530
js ajax.js
var xmlHttp;
//step (2)创建一个XMLHttpRequest对象的实例
function createXMLHttpRequest(){
//Mozilla 浏览器(将XMLHttpRequest对象作为本地浏览器对象来创建)
if(window.XMLHttpRequest){ //Mozilla 浏览器
xmlHttp = new XM