<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<script>
//对象的方法,对象的某个属性的值是函数,就叫对象的方法。
var ren = {
name: "小红",
sex: "男",
age: 30,
say: function() {
console.log('说话呢');
}
}
//对象的方法调用, ob.fun(); 进行调用。
ren.say();
</script>
</body>
</html>