为什么我的代码中的 event.target 不能在 firefox 中运行?
<script>
document.onmousedown = function(){
var e = window.event;
var target = e.srcElement || e.target || e.currentTarget;
if(target.className == 'box'){
alert("Yeah");
}
}
</script>
<body>
<div class="box" style="border:1px dotted #CC3366; width:300px; height:100px;">Click Me!!</div>
<a href="#" class="box">Link</a>
</body>
它可以在 IE 或 Chrome 中运行,但不能在 Firefox 中运行。