标题:undefined 是什么原理
只看楼主
渐渐鱼
Rank: 1
等 级:新手上路
帖 子:80
专家分:0
注 册:2018-5-11
结帖率:90%
已结贴  问题点数:20 回复次数:2 
undefined 是什么原理
运行挺正常的,但是最后在
alert(myCar.run());之后又弹出一个undefined的框??????????????


程序代码:
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
    </head>
    <body>
        <script>
        function Car(color,size)
        {
            this.color=color;
            this.size=size;
            this.run=run;
            this.voice=voice;
        }
        function run()
        {
            alert("I can run!");
        }
        function voice()
        {
            alert("I can voice!");
        }
        var myCar = new Car("red","middle");
        alert(myCar.color);
        alert(myCar.run());
        alert(myCar.voice());
        </script>
    </body>
    </html>
搜索更多相关主题的帖子: undefined alert run color this 
2018-06-23 15:09
林月儿
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:湖南
等 级:版主
威 望:138
帖 子:2276
专家分:10647
注 册:2015-3-19
得分:20 
程序代码:
 function Car(color,size)
        {
            this.color=color;
            this.size=size;
            this.run=run();
            this.voice=voice();
        }
        function run()
        {
            return "I can run!";
        }
        function voice()
        {
            return "I can voice!";
        }
        var myCar = new Car("red","middle");
        alert(myCar.color);
        alert(myCar.run);
        alert(myCar.voice);

剑栈风樯各苦辛,别时冰雪到时春
2018-06-23 17:56
渐渐鱼
Rank: 1
等 级:新手上路
帖 子:80
专家分:0
注 册:2018-5-11
得分:0 
回复 2楼 林月儿
谢谢^_^
2018-06-24 15:42



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-488099-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.179581 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved