https://developer.mozilla.org/en/DOM/element.onclick
概括
onclick 属性返回当前元素上的 onClick 事件处理程序代码。
句法
element.onclick = functionRef;
其中 functionRef 是一个函数 - 通常是在别处声明的函数的名称或函数表达式。有关详细信息,请参阅核心 JavaScript 1.5 参考:函数。
例子
<!doctype html>
<html>
<head>
<title>onclick event example</title>
<script type="text/javascript">
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()
{
alert("onclick Event detected!")
}
</script>
<style type="text/css">
#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() { alert("moot!"); };
(来自MDC @ cc-by-sa
。)