我有onclick param的div:
<div onclick="some_function()"></div>
如何访问函数内的事件对象?我需要它来获取event.target
function some_function()
{
event = event || window.event;
var target = event.target || event.srcElement;
//does not work in IE and Firefox, but works in chrome
}
答案 0 :(得分:3)
这样:
<div onclick="some_function(event)"></div>
function some_function(evt)
{
// do something with evt (the event passed in the function call)
}
请注意,函数调用中的参数名称必须为event
。在事件处理程序中,您可以使用所需的名称。
答案 1 :(得分:0)
使用该事件到达目标。注意目标与currentTarget问题:
https://developer.mozilla.org/en-US/docs/Web/API/Event/currentTarget
<div onclick="some_function(event)"></div>
function some_function(event)
{
// event.target is the DOM element that triggered the event
}
答案 2 :(得分:0)
使用事件和这两个
document.querySelector("div").addEventListener("click", function(event) {
some_function(event, this);
}, false);
function some_function(currentEvent, currentObject) {
alert("Object is: " + currentObject.nodeName);
alert("Event is: " + currentEvent.type);
};
&#13;
<div>Click Me</div>
&#13;
答案 3 :(得分:0)
<div onclick="some_function(this, event)"></div>
function some_function(elem, e)
{
//You have both: html element (elem), and object event (e)
//elem is not always equal to e.target
}
<div onclick="alert(this === event.target);">click here <span>then here</span></div>
答案 4 :(得分:0)
如果我们使用事件侦听器,则在“ this”中有html元素,在“ event”中有事件对象。
<a id="mya" href="#">Link</a>
var myA= document.querySelector("#mya");
myA.addEventListener("click", some_function);
function some_funtion() {
//Here the html element is: this
//Here the event object is: event
//event.target is not always equal to this
}
<div id="mydiv">click here <span>then here</span></div>
var myDiv = document.querySelector("#mydiv");
myDiv.addEventListener("click", other_function);
function other_function() {
alert(this === event.target);
}