我正在尝试获取发生了哪个事件::
function getEvent(){
alert(window.event);
}
我正在低于事件对象。我希望它在字符串中进行比较。如果事件 onclick 事件那么我想做这个动作。我怎样才能得到它的字符串?或者如何将事件对象转换为字符串?
[object MouseEvent]
我正在尝试获取发生了哪个事件::
function getEvent(){
alert(window.event);
}
我正在低于事件对象。我希望它在字符串中进行比较。如果事件 onclick 事件那么我想做这个动作。我怎样才能得到它的字符串?或者如何将事件对象转换为字符串?
[object MouseEvent]
使用类型属性。window.event.type
你可能想要:
function getEvent(){
alert(window.event.type);
}
type
您可以像这样轻松获得它
function getEvent(){
alert(window.event.type);
}
更多信息在这里
使用type
属性读出类型:
function getEvent(){
alert(window.event.type);
}
使用event.type
属性,例如
<div id="a" onclick="alert(event.type)">Click This</div>
<div id="b">And This</div>
Javascript:
var func = $('#a').attr('onclick');
$('#b').mouseover(function(e) {
func(e)
});
演示: http: //jsfiddle.net/4tLms/ </p>