我想通过路径的属性ID打开一个步骤表单。 示例:
/login.html?step=1
它应该打开STEP 1。
通过单击步骤2的“下一步”按钮,路径应将step = 1更改为step = 2
我已将其上传到此处(DEMO):http://jsfiddle.net/2jy3bpc7
答案 0 :(得分:0)
也许实现这一点:http://www.jquery-steps.com/Examples#basic。
我也曾在一个项目中这样做:
/*
* Direct links to steps
*
* Only enable for development purpose
*/
if (document.location.hash == "#step_02") {
$('.steps').fadeOut('fast', function(){
// fadein screen/step 02
$('#step_02').fadeIn()
});
}
if (document.location.hash == "#step_03") {
$('.steps').fadeOut('fast', function(){
// fadein screen/step 03
$('#step_03').fadeIn()
});
}
也许有帮助