jQueryのようなもの、および/またはjQuery(または一般的にブラウザのJavaScript)でイベントの元のターゲットを取得するベストプラクティスの方法は何ですか.
私はこのようなものを使用してきました
$('body').bind('click', function(e){
//depending on the browser, either srcElement or
//originalTarget will be populated with the first
//element that intercepted the click before it bubbled up
var originalElement = e.srcElement;
if(!originalElement){originalElement=e.originalTarget;}
});
これは機能しますが、2 行の機能スニッフィングには満足できません。より良い方法はありますか?