代码搜索:XMLHTTP
找到约 1,050 项符合「XMLHTTP」的源代码
代码结果 1,050
www.eeworm.com/read/369845/9631911
js ajax_functions.js
//创建对象
function create_obj(){
var http_request = false;
//开始初始化XMLHttpRequest对象
if(window.XMLHttpRequest) { //Mozilla 浏览器
http_request = new XMLHttpRequest();
if (http_req
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/365912/9841061
js top.js
var xmlHttp;
var xmlHttpType;
function createXMLHttpRuest(){
if(window.ActiveXObject){
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlHttpType="POST";
}
else
www.eeworm.com/read/425965/10302616
js ajax.js
var xmlHttp;
function createXMLHttp(){
if (window.ActiveXObject) {
try {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e1) {
www.eeworm.com/read/396547/2414265
js ajax.js
var xmlHttp;
function createXMLHttpRequest(){
if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}else if(window.ActiveXObject) {
try{
xmlHttp = new Activ
www.eeworm.com/read/369718/2796041
js ajax.js
var xmlHttp;
function createXMLHttpRequest(){
if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}else if(window.ActiveXObject) {
try{
xmlHttp = new Activ
www.eeworm.com/read/236238/4643344
js ajax.js
//------------------控制ajax的javascript-------------
//---------------创建<mark>XMLHttp</mark>Request对象-----------------
var <mark>xmlHttp</mark>;
try{
<mark>xmlHttp</mark>=new <mark>XMLHttp</mark>Request();
}catch(e){
<mark>xmlHttp</mark>=new Activ ...
www.eeworm.com/read/447003/1707512
js viewletter.js
var xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");//创建异步通信对象
function getCurrentMailInfo(url)
{
xmlHttp.open("POST", url, true);//打开与servlet的连接
xmlHttp.onreadystatechange = viewLett
www.eeworm.com/read/447003/1707507
js contactperson.js
var xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");//创建异步通信对象
function loadInfo(url, userId)
{
xmlHttp.open("POST", url, true);//打开与servlet的连接
xmlHttp.onreadystatechange = reply;//指定
www.eeworm.com/read/493864/6391682
htm comment.htm
function xmlhttp()
{
var A=null;
try
{
A=new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try
{
A=new ActiveXObject("Microsoft.XMLHTTP");
}
catch(oc)