为什么可以这样调用方法 var webhttp = new WebObject(callback) ;?得到的 返回值webhttp是什么样的值

[复制链接]
查看11 | 回复1 | 2011-2-23 17:18:53 | 显示全部楼层 |阅读模式
var webhttp = new WebObject(callback) ;
function WebObject(callback)
{
var webhttp;
try
{
webhttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try
{
webhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch(oc)
{
webhttp=null;
}
}
if(!webhttp && typeof XMLHttpRequest != "undefined" )
{
webhttp=new XMLHttpRequest();
}
this.xmlhttp = webhttp;
this.laststatus=0;
this.status=0 ;
this.callback=callback ;
}
webhttp对象

回复

使用道具 举报

千问 | 2011-2-23 17:18:53 | 显示全部楼层
泛型。取决于你取回什么值
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行