代码搜索:XmlHttpRequest
找到约 1,082 项符合「XmlHttpRequest」的源代码
代码结果 1,082
www.eeworm.com/read/400166/2355346
js ajax.js
var xmlHttp;
//step (2)创建一个XMLHttpRequest对象的实例
function createXMLHttpRequest(){
//Mozilla 浏览器(将XMLHttpRequest对象作为本地浏览器对象来创建)
if(window.XMLHttpRequest){ //Mozilla 浏览器
xmlHttp = new XM
www.eeworm.com/read/416469/11024311
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/483886/6596866
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/464699/1525236
js jscript.js
//本例是通过纯JavaScript实现
//创建XMLHttpRequest异步对象
function getXmlHttpRequest()
{
var xmlHttp;
try
{ // Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
www.eeworm.com/read/461687/1551712
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/231666/4713170
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/313964/3640476
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/304836/3784546
js fckxml.js
var FCKXml = function()
{}
FCKXml.prototype.GetHttpRequest = function()
{
// Gecko / IE7
if ( typeof(XMLHttpRequest) != 'undefined' )
return new XMLHttpRequest() ;
// IE6
try { retu
www.eeworm.com/read/270243/4240943
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/443995/1736917
js edit.js
var xmlHttp = window.XMLHttpRequest?(new XMLHttpRequest()):(new ActiveXObject("Microsoft.XMLHTTP"));
function chaptercontent(path,chaptername,chapterid)
{
document.getElementById("Text_Chapt