码迷,mamicode.com
首页 > Web开发 > 详细

JS基础学习1——什么是基础js类和原型?

时间:2016-04-20 15:06:40      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <title>Document</title>
    <script>
    //声明一个类
    function Person(name,age)
    {
        this.name=name;
        this.age=age;
    }
    //使用原型给类添加方法
    Person.prototype.show=function()
    {
        alert("我叫"+this.name+",今年"+this.age);
    }
    //创建两个对象
    var person1 =new Person(张三,20);
    var person2 =new Person(李四,23);
    //调用原型里面的方法
    person1.show();
    person2.show();
    </script>
</head>
<body>
     
</body>
</html>

 

JS基础学习1——什么是基础js类和原型?

标签:

原文地址:http://www.cnblogs.com/91allan/p/5412597.html

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