マウス上(:hover)のエレメントのIDを取得する

説明

Safari 3でマウス上(CSSの:hover)のエレメントのIDを取得するにはquerySelector(":hover")とします。

サンプルプログラム

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>マウス上(:hover)のエレメントのIDを取得する</h1>
<ul>
<li><a href="http://www.openspc2.org/" id="OpenSpace">OpenSpace</a></li>
<li><a href="http://www.yahoo.co.jp/" id="Yahoo">Yahoo Japan</a></li>
<li><a href="http://www.google.co.jp/" id="Google">Google (Japan)</a></li>
<li><a href="http://www.adobe.co.jp/" id="Adobe">Adobe (Japan)</a></li>
</ul>
<div id="result"></div>
</body>
</html>

【スクリプト】
window.onmousemove = function(){
var ele = document.querySelector(":hover");
document.getElementById("result").innerHTML = ele.id;
}
サンプルを実行
[戻る]