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.
我有这个画廊不支持同一页面上的多个相册,我需要帮助来隐藏我创建的第二个相册的图像。如何隐藏带有文字的图像下方的四个图像?
我复制了 JS 文件,按钮 ID,所以我可以在同一页面上看到多个专辑,我不明白我在这里缺少什么。
http://www.piterpan.it/ppgallery/giugno.html
使用可以使用 CSS 的 display 属性;
<img src="yourWebsiteAddress/ppgallery/img/13-03-17/aperitour-marzo-01_tb.jpg" style="display: none;">
或者你可以使用 jQuery 选择器;
$("#gallery").hide(); $("#view2").hide();
为方便起见,您可以为要隐藏的人定义一个类,然后简单地
$(".hiddenClass").hide();