第二个输出呢?

来源:5-6 编程练习

Angus

2016-12-17 19:46

我这样写的,为什么document.write只有第一句话的,第二句话没了,是什么原因呢? function max(a,b){    if(a>b){        max=a;    }    else{        max=b;    }    return max;    }  document.write(" 5 和 4 的较大值是:"+max(5,4)+"
");  document.write(" 6 和 3 的较大值是:"+max(6,3));

写回答 关注

1回答

  • 阳春三月面
    2016-12-17 21:19:19
    已采纳

    多了""

    Angus

    非常感谢!

    2016-12-22 16:23:48

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题