我有两个合作的事件:
value tagName is not a member of org.scalajs.dom.raw.EventTarget
&安培;
$(window).on('scroll', function(){ //dothis });
在scrollstop事件期间的某个时刻,(无需解释 - 仅我将其用于标记)我必须暂时禁用滚动事件:
$(window).on('scrollstop', function(){ //dothat });
唯一的麻烦是,这也会禁用scrollstop事件。我怎么能克服这个?
完整代码:
$(window).off('scroll');