<script>
// 赚钱
function earnMoney() {
console.log(this)
console.log( this.name + '说:定它个小目标,赚它一个亿')
}
earnMoney()
var wsc = {
// 属性名: 属性值
name: '王思聪',
age: 36,
money: 3000000000000,
// 打招呼
sayHello: function() {
// this 这个的意思
// 方法中this: 谁调用这个方法,this就是谁
console.log('大家好!我是' + this.name)
},
// 对象的方法中 可以调用对象的其它方法,通过this.方法名来调用即可
paoba: function(num) {
console.log(this.name + '今天带着'+ num +'个网红来到了酒吧')
this.sayHello()
console.log('今天酒吧我包了!')
},
earn: earnMoney
}
var wjl = {
name: '王健林',
earn: earnMoney
}
wjl.earn() // 王健林说 装一个亿
console.log(wsc.name)
wsc.sayHello()
wsc.paoba(5) // 今天带着5个网红来到了酒吧
wsc.earn() //
// 给王思聪改名
wsc.name = '王二狗'
console.log(wsc.name)
wsc.sayHello()
</script>
属性方法与this的指定方法运用
最新推荐文章于 2024-11-08 16:09:18 发布