bind()

Type : public method

Support : 1.0

Return : Function

Methods

  • bind( fnc, thisArg ) : Functionver 1.0~

    • fnc : Function
      대상 함수
    • thisArg : Function
      바인딩된 함수가 호출될 때 대상 함수에 this 매개변수로서 전달되는 값

Example

var people = {
    age: 21,
    setEvents: function () {
        node.addEventListener( 'click', $B.bind(function (e) {
            console.log( this.age );//21
        }, this));
    }
};