我是 jquery 的绝对初学者。我正在使用谷歌学习,但我不知道如何解决这个问题。
我用一个按钮连续显示 div,但是当没有更多 div 可以显示时,我想隐藏显示按钮。
这是代码:
$('#show').on('click', function() {
if (index + 1 > max) {
// Here, I suppose, I need to hide the button
} else {
if (index < max - 1) {
index++;
$('.container > div:eq(' + index + ')').show();
}
在这里你可以看到这个例子
在此先感谢并对我的英语感到抱歉;)