使用 jQuery formwizard 重新加入分支?
jQuery formwizard (http://thecodemine.org/) 允许您根据输入对表单向导进行分支。我试图弄清楚是否可以重新加入分支(而不仅仅是最后一步。)
例如,根据步骤 1 的输入,我想向用户展示不同的步骤 2。但是,在步骤之后2、其余步骤(步骤3、4、5等)应该都是相同的。
这怎么能做到呢?
谢谢!
jQuery formwizard (http://thecodemine.org/) allows you to branch a form wizard based on inputs. I am trying to figure out if it possible to rejoin the branches (and not just for the last step.)
e.g. Based on the inputs to Step 1, I'd like to present the user with a different step 2. However, after step 2, the remaining steps (step 3, 4, 5, etc.) should all be the same.
How can this be done?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这只需使用“第二”步骤之一的链接即可。这是通过使用 class="link" 指定隐藏输入字段并将值设置为接下来应执行的步骤的 id 来完成的。像这样(参见“第二步”):
希望这有帮助
this would just be a matter of using a link for one of the "second" steps. This is done by specifying a hidden input field with a class="link" and have the value set to the id of the step that should follow next. Like this (see "second step"):
Hope this helps