72、对象的方法

yu
yu
2024-10-04 / 0 评论 / 4 阅读 / 正在检测是否收录...
<!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>
    <script>
        let obj = {
            uname: '刘德华',
            // 方法
        //     song: function(x, y){
        //         console.log(x + y)
        //     }
        // }
        // // 方法调用 对象名.方法名
        // obj.song(1, 2     )
        }
        obj.song = {
            song: function(){
                console.log('唱歌')
            }
        }
        obj.song()
        obj.tiao = {
            tiao: function(){
                console.log('跳舞')
            }
        }
        obj.tiao()
    </script>
</body>
</html>
0

评论 (0)

取消