<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>自我介绍</title>
<h2>2023年5月16号星期二上午九点四十一</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("续振豪", 19, "男生", "睡觉","2023年5月16号星期二上午九点四十一");
function stu1() {
me.stu2();
}
</script>
</head>
<body>
<button onclick="stu1()">显示自我介绍</button>
</body>
</html>