mousemove
body タグでイベントを使用する場合。マウスが現在上にあるhtmlの要素を取得することは可能ですか?
$('body').mousemove(function (e) {
var details = e; // can e.something return what element the mouse cursor is over?
console.log(details);
});
mousemove
body タグでイベントを使用する場合。マウスが現在上にあるhtmlの要素を取得することは可能ですか?
$('body').mousemove(function (e) {
var details = e; // can e.something return what element the mouse cursor is over?
console.log(details);
});
event.target を使用できます
ID取得用
var id = event.target.id;
これを使用して確認することもできます
var $target = $(event.target);
if ($target.is("a")) {
}
e.target を使用します。詳細については、event.target のドキュメントを確認してください。
$('body').mousemove(function (e) {
var details = e.target; // can e.something return what element the mouse cursor is over?
console.log(details);
});
これがデモです:http://jsfiddle.net/PaX7b/1/