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.
jsp/html ページでクリックされた要素を正確に見つけることができるかどうか疑問に思っていました。特定の要素に対して特別なクリック機能を作成したくありません。Firebug のようなものです。
$(document).click(function(event){ // event.target is the clicked object });
これは、最終的にクリック イベントがドキュメント レベルまでバブルアップするため、機能します。
$('body').on('click', '*', function(){ // `this` will refer to the clicked element })