第十一次作业

这个作业属于哪个课程 https://edu.cnblogs.com/campus/sdscfz/SF3?filter=homework
这个作业要求在哪里 https://edu.cnblogs.com/campus/sdscfz/SF3/homework/12975
这个作业的目标 <第十一次作业>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <!-- <input name="按钮" type="button" onClick="clic()" value="按钮"></input> -->
    <button ondblclick="document.write(student1.name+student1.age+student1.sex+student1.love+str)">按钮</button>
    <script>

        function Stu(name,age,sex,love){
            this.name = name;
            this.age = age;
            this.sex = sex; 
            this.love = love;
           
        }

        var now = new Date()
            var str = 
        now.toLocaleDateString() + ' ' +
        now.toLocaleTimeString();

        var student1 = new Stu('徐晨',19,'男','爱好');
        // document.write(student1.name+student1.age+student1.sex+student1.love+str)
    </script>
</body>
<html>

posted @ 2023-05-17 16:09  软件嘉环三班徐晨  阅读(12)  评论(0编辑  收藏  举报