{
function mytestfun()
{
alert(mycolor);
}
function returnfun()
{
return "red";
}
var mycolor = returnfun();
mytestfun();
}
{
function mytestfun()
{
alert(mycolor);
}
function returnfun()
{
return "red";
}
var mycolor = returnfun();
mytestfun();
}

被折叠的 条评论
为什么被折叠?