我目前正在尝试通过函数添加到对象。
我的代码是:
var ob = {};
function add(f, fun) {
ob[f] = fun();
}
add('hi', function() {
alert('hello')
})
ob.hi()
所以这假设将 ob 更改为:
var ob = {
hi: function(){
alert('hello')
}
}
它确实会发出警报hello
,但只是从触发 add 函数(我想停止)而不是从ob.hi()
函数中触发。
谢谢你的帮助。如果你愿意,你也可以检查小提琴