jQuery步骤下一步按钮不移动到下一个标签

时间:2016-01-05 12:05:31

标签: javascript jquery

我有一个使用jQuery步骤设置的选项卡表单,但这是有效的,但是移动到下一个选项卡的下一个底部没有做任何事情。

我的jQuery:

var form = $("#forms");
    form.children("div").steps({
        headerTag: "h3",
        bodyTag: "section",
        transitionEffect: "slideLeft",

    });

表单布局:

 <form id="forms" onsubmit="return false;">
    <div>
        <h3>Package Details</h3>
        <section></section>
        <h3>Restaurant</h3>
        <section></section>
        <h3>Address</h3>
        <section></section>
        <h3>Finish</h3>
        <section></section>
    </div>
</form>  

1 个答案:

答案 0 :(得分:0)

试试这个

$("#forms").steps({
    headerTag: "h3",
    bodyTag: "section",
    transitionEffect: "slideLeft",
    autoFocus: true
});