作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以从被调用的 JavaScript 函数中获取 JavaScript 触发事件 不传递任何事件参数?
这是示例代码:
<html>
<head>
<script>
function myFunction()
{
// How I will get from here the fired event ??
}
</script>
</head>
<body>
<p id="paragraghhh" onclick="myFunction()">
Click on this paragraph. An alert box will
show which element triggered the event.
</p>
</body>
</html>
最佳答案
在 JavaScript 函数中,您可以引用 this.event 属性。
例如,
function myFunction(){
alert(this.event.type);
}
关于javascript - 如何在不传递事件参数的情况下从 JS 函数获取触发事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15810917/
我是一名优秀的程序员,十分优秀!