Hijacking onchange event without interfering with original function

前端 未结 3 1732
伪装坚强ぢ
伪装坚强ぢ 2021-01-03 12:37

I\'m writing on a library I want to include on different pages who might already use the onchange event - is there any way to attach my event to onchange<

3条回答
  •  说谎
    说谎 (楼主)
    2021-01-03 13:09

    If I'm correct it sounds like you want to inject new code into an existing event. This may help you if you want a pure JavaScript solution and here is a fiddle demonstrating the feature. http://jsfiddle.net/VZCve/1/

    var element = document.getElementById("myElementId");
    
    element.onchange = (function (onchange) {
      return function(evt) {
        // reference to event to pass argument properly
        evt  = evt || event;
    
        // if an existing event already existed then execute it.
        if (onchange) {
          onchange(evt);
        }
    
        // new code "injection"
        alert("hello2");
      }
    })(element.onchange);
    

    EDITED: Now that the tags are changed and you are reference jQuery in your Question

    jQuery will continue to bind new functions using jQuery.change().

    note the following will execute all change functions assigned

    $(document).ready(function () {
      $("#myElement").change(function() { alert('executed') });
      $("#myElement").change(function() { alert('executed again') });
      $("#myElement").change(function() { alert('executed again again') });
    });
    

    When you trigger the change event for the element in the selector you will receive 3 alerts.

    Note the order of the events firing is dependent on the order each function was bound to the element.

    Here is a simple fiddle demonstrating the functionality in jQuery http://jsfiddle.net/VZCve/

提交回复
热议问题