我有一个使用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>
答案 0 :(得分:0)
试试这个
$("#forms").steps({
headerTag: "h3",
bodyTag: "section",
transitionEffect: "slideLeft",
autoFocus: true
});