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

お使いの Google Chrome のバージョンはどれですか。
私にとっては問題なく動作します: 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 に答える