博客列表 >0710作业

0710作业

杨发国的博客
杨发国的博客原创
2019年07月11日 17:24:42501浏览

作业1创建一个构造函数

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>js构造函数作业</title>
</head>
<body>
<script>


var CreateObj = function()
{
    this.dommin = 'php.cn';
    this.get = function (value) {
        var site = 'php中文网';
        return site + value;
    }
}
 var obj1 = new CreateObj();
    console.log(obj1.dommin);
    console.log(obj1.get(obj1.dommin));
    var obj2 = new CreateObj();
    console.log(obj2.dommin);
    console.log(obj2.get(obj2.dommin));

</script>
</body>
</html>
 
作业2:

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>js构造函数作业</title>
</head>
<body>
<script>

var CreateObj = function()
{
    this.dommin = 'php.cn';
    this.get = function (value) {
        var site = 'php中文网';
        return site + value;
    }
}

CreateObj.prototype.email='yangfaguo@qq.com';
CreateObj.prototype.hellow=function () {
    return 'js不好玩';
};
   var obj= new CreateObj();
   console.log(obj.email);
  console.log(obj.hellow);
</script>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

11.png

 

点击 "运行实例" 按钮查看在线实例

22.png

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议