问答详情
源自:5-6 编程练习

哪里有问题,看晕了

<!DOCTYPE  HTML>

<html >

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>函数</title>


<script type="text/javascript">

    function max(a,b){

        if (a>b){

            document.write(a);

        }

        else if(a==b){

            document.write(a);

        }

        else{

            document.write(b);

        }

        }

    var aa=max(5,4);  

    var bb=max(6,3);

//调用函数,实现下面两组数中,返回较大值。

  document.write("5 和 4 的较大值是:"+aa+"<br>");

  document.write(" 6 和 3 的较大值是:"+bb); 

</script>

</head>

<body>

</body>

</html>


提问者:qq_小Lun_0 2015-08-17 16:34

个回答

  • Perona
    2015-08-17 17:10:36
    已采纳

    把document.write改成return。你不能调用了函数,不给返回值,那么它走完函数体还是没有结果的呀。返回值就相当于函数的结果。

    修改后的代码你看看

    <!DOCTYPE  HTML>
    <html >
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>函数</title>
    
        <script type="text/javascript">
            function max(a,b){
                if (a>b){
                    return a;
                     }else if(a==b){
                    return ("相等");
                     }else{
                    return b;
                }
            }
            var aa=max(5,4);
            var bb=max(6,3);
            //调用函数,实现下面两组数中,返回较大值。
            document.write("5 和 4 的较大值是:"+aa+"<br>");
            document.write(" 6 和 3 的较大值是:"+bb);
        </script>
    </head>
    <body>
    </body>
    </html>


  • qq_小Lun_0
    2015-08-17 18:03:51

    已经习惯了您的及时指导,哈哈