代码搜索:XMLHTTP
找到约 1,050 项符合「XMLHTTP」的源代码
代码结果 1,050
www.eeworm.com/read/456104/7358645
js jsjudgeusername.js
// JScript 文件
var xmlHttp;
var re
function createXMLHttpRequest()
{
if (window.ActiveXObject)
{
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (w
www.eeworm.com/read/454959/7380923
js hippo_ajax_form.js
var XMLHttpRequestObject = createXMLHttpRequestObject();
function createXMLHttpRequestObject()
{
var XMLHttpRequestObject = false;
try
{
XMLHttpRequestObject = new XMLHttpRequest()
www.eeworm.com/read/453806/7410950
js ajax.js
function createAjaxObj(){
var httprequest=false
if (window.XMLHttpRequest){ // if Mozilla, Safari etc
httprequest=new XMLHttpRequest()
if (httprequest.overrideMimeType)
httprequest.overr
www.eeworm.com/read/452917/7429254
js ajax.js
function $(id)
{
return document.getElementById(id);
}
function echo(obj,html)
{
$(obj).innerHTML=html;
}
function createxmlhttp()
{
var xmlhttp = false;
try
{
xmlhttp = new Ac
www.eeworm.com/read/452838/7431902
js ajax.js
//--------Iframe-窗口自动适应----------
function resizePage(){
try{
if(window.navigator.userAgent.indexOf("MSIE")>=1) { //IE
document.getElementById("showArticle").style.width=document.getEleme
www.eeworm.com/read/452838/7431911
js index_login.js
function loginCheck(){
var theForm=document.getElementById("loginForm");
with(theForm){
if(username.value==""){
alert("用户名不能为空!");
username.focus();
return false;
}
else if(us