当开发者控制台在chrome中打开时,为什么onmouseover停止工作?相反,它会触发 onclick。
考虑这个简单的例子。它在控制台关闭时调整图像 onMouseOver 的大小,但仅在控制台打开时单击
<!DOCTYPE html>
<html>
<head>
<script>
function over(x) { x.style.height="64px"; }
function out(x) { x.style.height="32px"; }
</script>
</head>
<body>
<img onmouseover="over(this)" onmouseout="out(this)" src="animage.png" />
</body>
</html>