为何我这代码会执行两次?
<script type="text/javascript">
//定义函数
function hanshu(a,b){
//函数体,判断两个整数比较的三种情况
if(a>b){
alert(a+"大于"+b);
return a;
}
else if(a<b)
{
alert(a+"小于"+b);
return a;
}
else{
alert("一样大");
}
};
haha1=hanshu(5,4);
haha2=hanshu(6,3);
haha3=hanshu(3,3);
//调用函数,实现下面两组数中,返回较大值。
document.write(" 5 和 4 的较大值是:"+haha1+"<br>");
document.write(" 6 和 3 的较大值是:"+haha2 );
</script>