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.
我需要在我的网站中实现一个东西,即:如果我点击页面左侧的任何图像,它的描述应该出现在同一页面的右侧,而无需重新加载。即:在其他 div 中。
为每个图像放置一个 div 元素并将其可见性设置为隐藏。然后将 onclick 侦听器附加到每个图像上,如下所示:
<div> <img> <div>description</div> </div> $( document).ready( function() { $( ".myImages" ).click( function() { $( this ).next().css( 'visibility', 'visible' ); }); });