代码之家  ›  专栏  ›  技术社区  ›  Mike Robinson

javascript如何触发被阻止的事件

  •  1
  • Mike Robinson  · 技术社区  · 14 年前

    在我的应用程序中,用户单击指向另一页的链接。我想在Omniture中用自定义事件跟踪它,所以我将Omniture s.t()事件绑定到了Click事件。如何确保在请求下一页之前触发事件?

    我考虑过链接的click事件上的event.preventDefault(),但实际上我希望原始事件发生,只是不要立即发生。

    3 回复  |  直到 14 年前
        1
  •  3
  •   CrayonViolent    14 年前

    omniture的s.tl()函数具有内置延迟

        2
  •  1
  •   Vincent    14 年前

    像这样的事情:

    var cachedEvent = yourElement.onclick;
    yourElement.onclick = function(){
    
        s.t(); // Omniture thingy
        cachedEvent(); // Old event
    
    }
    
        3
  •  -1
  •   Alex Mcp    14 年前

    我不知道什么是无所不在的事件,但是

    yourElement.onClick = function(){
        omnitureFunction();
    }
    
    onmitureFunction = function() {
        //stuff
        myOtherFunction();//what onClick is "supposed to do"
    }
    

    所以 function2 只有在成功完成 function1