Home >Web Front-end >JS Tutorial >How Can I Pass Arguments to an addEventListener Function?
In a scenario where we want to pass arguments to an event listener function, we might encounter a situation where the argument is inaccessible within the function. This can occur when we assign a variable to the function, like this:
var someVar = some_other_function(); someObj.addEventListener("click", function(){ some_function(someVar); }, false);
Here, the issue is that the value of someVar is not available within the event listener's function.
To resolve this, we can leverage the target attribute of the event object to retrieve the parameters passed to the listener function. Consider this example:
const someInput = document.querySelector('button'); someInput.addEventListener('click', myFunc, false); someInput.myParam = 'This is my parameter'; function myFunc(evt) { window.alert(evt.currentTarget.myParam); }
In this modified code:
This approach effectively allows us to pass arguments to our event listener function without encountering the original issue.
The above is the detailed content of How Can I Pass Arguments to an addEventListener Function?. For more information, please follow other related articles on the PHP Chinese website!