1

当开发者控制台在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>
4

1 回答 1

0

你有哪个谷歌浏览器版本?
对我来说,它没有任何问题:http: //jsfiddle.net/MXTQJ/

<script>
function over(x) { x.style.height="64px"; }
function out(x) {  x.style.height="32px"; }
</script>
<img onmouseover="over(this)" onmouseout="out(this)" src="animage.png" />
于 2013-05-25T12:14:45.240 回答