how to get javaScript event source element?

后端 未结 6 616
夕颜
夕颜 2020-12-23 16:20

Is there a way to retrieve the element source of an inline javaScript call?

I have a button like this:

相关标签:
6条回答
  • 2020-12-23 17:10

    USE .live()

     $(selector).live(events, data, handler); 
    

    As of jQuery 1.7, the .live() method is deprecated. Use .on() to attach event handlers.

    $(document).on(events, selector, data, handler);  
    
    0 讨论(0)
  • 2020-12-23 17:13

    You can pass this when you call the function

    <button onclick="doSomething('param',this)" id="id_button">action</button>
    
    <script>
        function doSomething(param,me){
    
        var source = me
        console.log(source);
    }
    </script>
    
    0 讨论(0)
  • 2020-12-23 17:14

    You should change the generated HTML to not use inline javascript, and use addEventListener instead.

    If you can not in any way change the HTML, you could get the onclick attributes, the functions and arguments used, and "convert" it to unobtrusive javascript instead by removing the onclick handlers, and using event listeners.

    We'd start by getting the values from the attributes

    $('button').each(function(i, el) {
        var funcs = [];
    
    	$(el).attr('onclick').split(';').map(function(item) {
        	var fn     = item.split('(').shift(),
            	params = item.match(/\(([^)]+)\)/), 
                args;
                
            if (params && params.length) {
            	args = params[1].split(',');
                if (args && args.length) {
                    args = args.map(function(par) {
                		return par.trim().replace(/('")/g,"");
                	});
                }
            }
            funcs.push([fn, args||[]]);
        });
      
        $(el).data('args', funcs); // store in jQuery's $.data
      
        console.log( $(el).data('args') );
    });
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <button onclick="doSomething('param')" id="id_button1">action1</button>
    <button onclick="doAnotherSomething('param1', 'param2')" id="id_button1">action2</button>.
    <button onclick="doDifferentThing()" id="id_button3">action3</button>

    That gives us an array of all and any global methods called by the onclick attribute, and the arguments passed, so we can replicate it.

    Then we'd just remove all the inline javascript handlers

    $('button').removeAttr('onclick')
    

    and attach our own handlers

    $('button').on('click', function() {...}
    

    Inside those handlers we'd get the stored original function calls and their arguments, and call them.
    As we know any function called by inline javascript are global, we can call them with window[functionName].apply(this-value, argumentsArray), so

    $('button').on('click', function() {
        var element = this;
        $.each(($(this).data('args') || []), function(_,fn) {
            if (fn[0] in window) window[fn[0]].apply(element, fn[1]);
        });
    });
    

    And inside that click handler we can add anything we want before or after the original functions are called.

    A working example

    $('button').each(function(i, el) {
        var funcs = [];
    
    	$(el).attr('onclick').split(';').map(function(item) {
        	var fn     = item.split('(').shift(),
            	params = item.match(/\(([^)]+)\)/), 
                args;
                
            if (params && params.length) {
            	args = params[1].split(',');
                if (args && args.length) {
                    args = args.map(function(par) {
                		return par.trim().replace(/('")/g,"");
                	});
                }
            }
            funcs.push([fn, args||[]]);
        });
        $(el).data('args', funcs);
    }).removeAttr('onclick').on('click', function() {
    	console.log('click handler for : ' + this.id);
      
    	var element = this;
    	$.each(($(this).data('args') || []), function(_,fn) {
        	if (fn[0] in window) window[fn[0]].apply(element, fn[1]);
        });
      
        console.log('after function call --------');
    });
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    
    <button onclick="doSomething('param');" id="id_button1">action1</button>
    <button onclick="doAnotherSomething('param1', 'param2')" id="id_button2">action2</button>.
    <button onclick="doDifferentThing()" id="id_button3">action3</button>
    
    <script>
    	function doSomething(arg) { console.log('doSomething', arg) }
        function doAnotherSomething(arg1, arg2) { console.log('doAnotherSomething', arg1, arg2) }
        function doDifferentThing() { console.log('doDifferentThing','no arguments') }
    </script>

    0 讨论(0)
  • 2020-12-23 17:14

    Try something like this:

    <html>
      <body>
    
        <script type="text/javascript">
            function doSomething(event) {
              var source = event.target || event.srcElement;
              console.log(source);
              alert('test');
              if(window.event) {
                // IE8 and earlier
                // doSomething
               } else if(e.which) {
                // IE9/Firefox/Chrome/Opera/Safari
                // doSomething
               }
            }
         </script>
    
        <button onclick="doSomething('param')" id="id_button">
          action
        </button>
    
      </body>      
    </html>
    
    0 讨论(0)
  • 2020-12-23 17:16

    I believe the solution by @slipset was correct, but wasn't cross-browser ready.

    According to Javascript.info, events (when referenced outside markup events) are cross-browser ready once you assure it's defined with this simple line: event = event || window.event.

    So the complete cross-browser ready function would look like this:

    function doSomething(param){
      event = event || window.event;
      var source = event.target || event.srcElement;
      console.log(source);
    }
    
    0 讨论(0)
  • 2020-12-23 17:20

    Your html should be like this:

    <button onclick="doSomething" id="id_button">action</button>
    

    And renaming your input-paramter to event like this

    function doSomething(event){
        var source = event.target || event.srcElement;
        console.log(source);
    }
    

    would solve your problem.

    As a side note, I'd suggest taking a look at jQuery and unobtrusive javascript

    0 讨论(0)
提交回复
热议问题