第十一次作业

这个作业属于哪个课程 https://edu.cnblogs.com/campus/sdscfz/SF4
这个作业要求在哪里 https://edu.cnblogs.com/campus/sdscfz/SF4/homework/12964
这个作业的目标 第11次作业-构造函数创建对象

<!doctype html>
<html>
<head>
   <meta charset="utf-8">
   <title>自我介绍</title>
   <h2>2023年5月19号星期五15:46</h2>
   <script>
   	function Stu(name, age, gender, hobby,time) {
   	  this.name = name;
   	  this.age = age;
   	  this.gender = gender;
   	  this.hobby = hobby;
         this.time = time;
   	  this.stu2 = function() {
   	    document.write("我叫" + this.name + ",今年" + this.age + "岁,是" + this.gender + ",我的爱好是" + this.hobby + "。" + "现在的时间是:" + this.time);
   	  }
   	}
   	var me = new Stu("杨润", 18, "女生", "画画","2023年5月19号星期五15:46");
   	function stu1() {
   		me.stu2();
   	}
   </script>
</head>
<body>
   <button onclick="stu1()">显示自我介绍</button>
</body>
</html>
posted @ 2023-05-19 15:19  杨润  阅读(9)  评论(0编辑  收藏  举报