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.
$( function() { $(".box").hover( function() { $(this).find(".overlay").fadeIn(); } ,function() { $(this).find(".overlay").fadeOut(); }); });
このjQueryマウスオーバー表示レイヤーは、マウスクリック表示メニューを編集するにはどうすればよいですか?
試す
$(function () { $(".box").click(function () { var $overlay = $(this).find(".overlay"); if ($overlay.is(':visible')) { $overlay.fadeOut(); } else { $overlay.fadeIn(); } }); });