JS 字面量面向对象访问报not a function


var page={
    init:function(){
        this.initEvents()
    },
    bindEvent: function (target, type, name) {
        $(target).bind(type, function (e) {
            e.preventDefault();
            name(e)
            })
    },
    initEvents: function () {
        this.bindEvent('.pic-egg1', 'click', this.showDiag)
        this.bindEvent('.pic-egg2', 'click', this.showDiag)
    },
    showDiag: function () {
        this.hideDiag()
    },
    hideDiag:function(){
        console.log('出不来')
    }
}

控制器报这个错误

hideDiag is not a function

谷白
浏览 659回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript