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.
jQueryの任意の要素のイベントをキャプチャするにはどうすればよいですか? 明らかに$("*").click()機能しません。クリックされた要素のセレクターのようなものはありますか?
$("*").click()
試してみてください
$(document).on('click', function(){}) $("body").on('click', function(){})