window属性:onclick
onclick属性
该onclick属性返回当前元素的click事件处理程序代码。
注意:当使用该click事件触发某个动作时,还可以考虑将相同的动作添加到该keydown事件中,以允许不使用鼠标或触摸屏的人使用该动作。
onclick属性语法
element.onclick = functionRef;
其中functionRef是一个函数 - 通常是在别处声明的函数或函数表达式的名称。
传递给指定事件处理函数的单个参数是一个MouseEvent对象。在处理程序中,this将是触发事件的元素。
onclick属性示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>onclick event example</title>
<script>
function initElement() {
var p = document.getElementById("foo");
// NOTE: showAlert(); or showAlert(param); will NOT work here.
// Must be a reference to a function name, not a function call.
p.onclick = showAlert;
};
function showAlert(event) {
alert("onclick Event detected!");
}
</script>
<style>
#foo {
border: solid blue 2px;
}
</style>
</head>
<body onload="initElement();">
<span id="foo">My Event Element</span>
<p>click on the above element.</p>
</body>
</html>
或者你可以使用一个匿名函数,如下所示:
p.onclick = function(event) { alert("moot!"); };
笔记
当用户点击一个元素时引发该click事件。之后的点击事件发生mousedown和mouseup事件。
每次只有一个click处理程序可以通过此属性分配给一个对象。您可能倾向于使用该EventTarget.addEventListener()方法,因为它更灵活并且是DOM事件规范的一部分。
规范
规范 | 状态 | 注释 |
---|---|---|
HTML Living Standard 在该规范中的'onclick'的定义。 | Living Standard |
浏览器兼容性
我们正在将兼容性数据转换为机器可读的JSON格式。
- 电脑端
特征 | Chrome | Edge | Firefox(Gecko) | Internet Explorer | Opera | Safari(WebKit) |
---|---|---|---|---|---|---|
基本支持 | 支持 | 支持 | ? | ? | ? | ? |
- 移动端
特征 | Android | Android Webview | Chrome for Android | Edge | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|---|---|---|
基本支持 | ? | ? | ? | ? | ? | ? | ? | ? | ? |