代码搜索:XMLHTTP
找到约 1,050 项符合「XMLHTTP」的源代码
代码结果 1,050
www.eeworm.com/read/390818/8439479
js ajax.js
function checkcode(){
getinfo();
var xmlhttp;
try{
xmlhttp=new XMLHttpRequest();
}
catch(e){
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function
www.eeworm.com/read/485834/6547923
js ajax.js
function checkcode(){
getinfo();
var xmlhttp;
try{
xmlhttp=new XMLHttpRequest();
}
catch(e){
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function
www.eeworm.com/read/412249/2173689
js game_init.js
function init_data(){
var xmlHttp = new XMLHttpRequest();
if (xmlHttp) {
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState == 4 && (xmlHttp.status == 20
www.eeworm.com/read/266727/11214543
js ajax.js
function checkcode(){
getinfo();
var xmlhttp;
try{
xmlhttp=new XMLHttpRequest();
}
catch(e){
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function
www.eeworm.com/read/430341/1932746
js hisshow.js
//显示搜索历史内容
function ShowHistory(){
var xmlhttp;
try{
xmlhttp = new XMLHttpRequest();
}
catch(e){
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange =
www.eeworm.com/read/287344/8692248
js ajax_functions.js
//AJAX public functions
//zhangcy 2006-12-6
//创建对象
function create_obj(){
var http_request = false;
//开始初始化XMLHttpRequest对象
if(window.XMLHttpRequest) { //Mozilla 浏览器
h
www.eeworm.com/read/417022/11006743
js ajax.js
//===================================================
// CreateLiveCMS Version4.0 Ajax(By 梅傲风)
//===================================================
// Mail: support@aspoo.cn, Info@aspoo.cn
// Msn
www.eeworm.com/read/442320/7655115
js sel_mh.js
var s="";
function LoadHTML(url) {
var xmlHTTP = new ActiveXObject("Microsoft.XMLHTTP");
xmlHTTP.open("GET",url,false);
xmlHTTP.setRequestHeader("Contrn-type","text/html");
xmlHTTP.setReq