為什么彈窗會多幾次!
<!DOCTYPE? HTML>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函數(shù)</title>
<script type="text/javascript">
//定義函數(shù)
function alertBig (x,y) {
? ? if(x > y) {
? ? ? ? alert(x);
? ? } else if(x < y) {
? ? ? ? alert(y);
? ? } else {
? ? ? ? alert("相等");
? ? }
}
? ?var req1 = alertBig(5,4);
//函數(shù)體,判斷兩個整數(shù)比較的三種情況
? var req2 = alertBig(6,3);
?
//調(diào)用函數(shù),實現(xiàn)下面兩組數(shù)中,返回較大值。
? document.write(" 5 和 4 的較大值是:"+req1+"<br>");
? document.write(" 6 和 3 的較大值是:"+req2 );?
</script>
</head>
<body>
</body>
</html>
2018-07-26
因為你用的是alert命令呀,應(yīng)該是用return命令。
2018-06-08
因為網(wǎng)頁嵌入的編輯器要執(zhí)行一次,瀏覽器也要解析一次。