jQuery .click for multistep form。单击按钮时不起作用

时间:2017-10-30 02:50:53

标签: jquery forms

JavaScript / jQuery新手。我知道HTML OK和CSS OK。无法让我的按钮在jQuery中工作。研究2晚,现在寻求帮助:( thnx

//jQuery time

$(document).ready(function () { });

var current_fs, next_fs, previous_fs; //fieldsets

$(".next").click(function () {
    current_fs = $(this).parent();
    next_fs = $(this).parent().next();        
});

$(".previous").click(function () {
    current_fs = $(this).parent();
    previous_fs = $(this).parent().prev();
});

$(".submit").click(function () {

})

1 个答案:

答案 0 :(得分:0)

您的所有jQuery代码都应该在$(document).ready(function () { });

之内

所以你必须做这样的事情

var current_fs, next_fs, previous_fs; //fieldsets
$(document).ready(function () { 



    $(".next").click(function () {
        current_fs = $(this).parent();
        next_fs = $(this).parent().next();        
    });

    $(".previous").click(function () {
        current_fs = $(this).parent();
        previous_fs = $(this).parent().prev();
    });

    $(".submit").click(function () {

    });

});