日期:2014-05-16 浏览次数:20462 次
<html>为什么弹不出来“hehe”,哪里错了吗?
<body>
<script type="text/javascript">
function sum(){
var a=5,b=6;
}
sum();
if(a<b)
{
alert("hehe");
}
else
{
alert("haha");
}
</script>
</body>
</html>
function sum(){
var a=5,b=6;
if(a<b)
{
alert("hehe");
}
else
{
alert("haha");
}
}
sum();