Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Opera Dragonfly と Firebug でのマウス クリックによる要素インスペクタに似たものを探しています。
クリックすると、JavaScript でその要素を取得する方法が表示されますか? これのためのツールはありますか?
それを行う必要があります:
var element = document.elementFromPoint(x, y);
完全なコード:
window.onmousemove=function(e) { elem=document.elementFromPoint(e.clientX,e.clientY); elem.style.backgroundColor="#3399ff"; }
もちろん、これは単なる例であり、完璧ではありません。