gpt4 book ai didi

javascript - 使用 jQuery formwizard 重新加入分支?

转载 作者:行者123 更新时间:2023-11-30 13:36:28 25 4
gpt4 key购买 nike

jQuery 表单向导 (http://thecodemine.org/) 允许您根据输入对表单向导进行分支。我想弄清楚是否有可能重新加入分支机构(而不仅仅是最后一步。)

例如根据第 1 步的输入,我想向用户呈现不同的第 2 步。但是,在第 2 步之后,其余步骤(第 3、4、5 步等)应该都是相同的。

如何做到这一点?

谢谢!

最佳答案

这只是为“第二”步骤之一使用链接的问题。这是通过指定一个带有 class="link"的隐藏输入字段并将值设置为下一步应该遵循的步骤的 ID 来完成的。像这样(见“第二步”):

<div class="step" id="first">
navigates to either second or third step depending on what is selected in the dropdown
<select class="link" name="firstlink" id="firstlink">
<option value=""></option>
<option value="second">go to second</option>
<option value="third">go to third</option>
</select>
</div>
<div class="step" id="second">
uses a link to go to fourth step
<input class="link" value="fourth" />
</div>
<div class="step" id="third">
falls through to fourth steo
<div>
<div class="step" id="fourth">
common step
<div>

希望对你有帮助

关于javascript - 使用 jQuery formwizard 重新加入分支?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4652834/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com