码迷,mamicode.com
首页 > 其他好文 > 详细

11-什么是对象。。

时间:2017-03-19 13:38:45      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:生活   har   class   mon   char   事物   唯一性   new   水晶   

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<script>
    //生活中。一类事物和对象的区别。(对象是指具有唯一性的事物)
    //游戏中。有特指的事物是对象。
    //程序中。

    var hero = new Object();
    //自定义属性--状态
    hero.money = 10000;
    hero.level = 6;

    //方法---行为。
    hero.attack = function () {
        console.log("攻击了水晶!");
    }

    console.log(hero);
    console.log(hero.money);
    console.log(hero.level);
    hero.attack();

    //属性和方法:状态(名词)和行为(动词)。

</script>
</body>
</html>

  

11-什么是对象。。

标签:生活   har   class   mon   char   事物   唯一性   new   水晶   

原文地址:http://www.cnblogs.com/sj1988/p/6579939.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!