我创建了一个jquery问卷,当用户点击下一个和上一个按钮时,它会导航到下一个问题Click here我注意到我的下一个和上一个功能不在下一个问题旁边。
一旦点击下一个按钮,它就意味着没有去问题,反之亦然。以下是我的代码片段
if (parentContainer.next('.responsible-gaming__parentContainer').length) {
parentContainer.hide();
parentContainer.next('.responsible-gaming__parentContainer').show();
}
有谁知道我如何解决这个问题
答案 0 :(得分:0)
看起来你的选择器错了..
试试这个:
http://jsfiddle.net/jFIT/y725p/7/
$('.nodetest__nextBtn').click(function () {
$('.responsible-gaming__parentContainer:visible').hide().next('.responsible-gaming__parentContainer').show();
});
$('.nodetest__prevBtn').click(function () {
$('.responsible-gaming__parentContainer:visible').hide().prev('.responsible-gaming__parentContainer').show();
});
答案 1 :(得分:0)
尝试使用jquery的<()点击功能
$( ".class" ).on( "click", function() {
//do some stuff here;
});