我有点像菜鸟,但我尝试了所有明显的事情。也许我的javascript很糟糕,这就是原因,但是onmousedown = func;不起作用。等
function performCommand(event)
{
/*removed*/
//It reaches this point
document.body.onclick = function() {
//Never reaches this point
/*removed*/
}
}
答案 0 :(得分:0)
https://developer.mozilla.org/en/DOM/element.onclick
onclick属性返回当前元素的onClick事件处理程序代码。
element.onclick = functionRef;
其中functionRef是一个函数 - 通常是在别处声明的函数的名称或函数表达式。有关详细信息,请参阅Core 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!"); };
(来自the MDC @ cc-by-sa
。)