does jquery have an equivalent of dojo.hitch()?

前端 未结 7 1692
甜味超标
甜味超标 2021-02-07 07:24

Forgive my ignorance as I am not as familiar with jquery. Is there an equivalent to dojo.hitch()? It returns a function that is guaranteed to be executed in the given scope.

7条回答
  •  深忆病人
    2021-02-07 07:56

    //why not just:
    (function($){
      $.hitch = function(scope, fn){
        return function(){
          return fn.apply(scope, arguments);
        }
      }
    })(JQuery);
    //This works exactly like Dojo's hitch from what I can tell.
    

提交回复
热议问题