![]() |
#2
love云彩2013-08-09 00:40
|
<html>
<script>
var a=9
function dd()
{
return a;
var a=5;
}
alert(dd())//undefined
</script>
</html>