日期:2014-05-16 浏览次数:20399 次
function oDemo1()
{
return 1;
}
function oDemo2(obj)
{
return obj;
}
alert(oDemo2(oDemo1)); //为什么显示的是oDemo1的源代码?