我正在尝试使用此代码制作画廊。
如果我有两个单独的按钮和内容容器,它可以工作,但是有没有办法只使用一个容器来存放所有内容?
此外,不使用额外的类,如(一,二,三,...)
HTML:
<div id="content">this is a box</div>
<button>First</button>
<div class="info">hahahaha</div>
<button>Second</button>
<div class="info">hahahaha2</div>
<button>Third</button>
<div class="info">hahahaha3</div>
JS:
$(".info").hide();
$("button").click(function () {
//replace stuff inside #content with .info in the div under each box
$("#content").html($(this).find(".info"));
});