我有 3 个“跨度”
<span class="input1" style="display:block;"><span class="round"></span></span>
<span class="input2" style="display:none;"><span class="round"></span></span>
<span class="input3" style="display:none;"><span class="round"></span></span>
这是脚本:
$(document).ready(function() {
act = 1;
next = act+1;
});
$(".round").click(function (){
$('.input'+act).hide();
$('.input'+next).show();
act = next;
});
第一次推“.round” -> “.input1” - 隐藏 & “.input2” - 显示 如果我想第二次推“.round” -> 什么也没发生。(这就是问题)
如何隐藏“.input2”并显示“.input3”?感谢您的帮助,对不起我的英语!