我有一个使用 jQuery 逐步完成自定义过程的 3 步表单。我在第 1 步和第 2 步有一些复选框,并希望创建在第 3 步中选择的那些的摘要页面。
一旦用户对他们的选择感到满意,我就想将这些选择通过电子邮件发送到特定地址。
它使用 jQuery,因此不需要转到另一个页面显示/隐藏正确的步骤。
如何显示在步骤 3 中选择的内容?电子邮件部分还不是很重要,但请记住它需要完成。
这是表格:
<div class="entire_product">
Content here.
<a id="customise" class="configure-demo" style="margin-top:20px;" href="#">Configure new system & get quote</a>
</div>
<div class="customise" style="display:none;">
<form id="customisesystem" method="post" action="">
<div id="first-step">
<div class="steps">
<p><b>Step 1 of 3</b></p>
</div>
<div class="progress-buttons"></div>
<div class="clear"></div>
<div id="customise-area">
<p>Options 1</p>
<div id="customise-area">
<input type="checkbox" name="hardware[]" value="<?php the_title(); ?>">
</div>
</div>
</div>
<div id="second-step">
<div class="steps">
<p><b>Step 2 of 3</b></p>
</div>
<div class="progress-buttons"></div>
<div class="clear"></div>
<div id="customise-area">
<p>Options 2</p>
<div id="customise-area">
<input type="checkbox" name="hardware[]" value="<?php the_title(); ?>">
</div>
</div>
</div>
<div id="third-step">
<div class="steps">
<p><b>Step 3 of 3</b></p>
</div>
<div class="progress-buttons"></div>
<div class="clear"></div>
<div id="customise-area">
<p>Summary</p>
<div id="customise-area">
<input type="submit" name="submit" id="submit" value="submit" />
</div>
</div>
</div>
</form>
</div>
这是我最初用来显示表单的 jQuery,然后逐步完成它:
<script type="text/javascript">
var prevLink = '<a class="back" href="#">Back</a>';
var nextLink = '</a><a class="next" href="#">Next</a>';
var navHTML = '<div class="prev-next">' +
prevLink +
nextLink +
'</div>';
var prevLink = '<a class="back" href="#">Back</a>';
var nextLink = '</a><a class="next" href="#">Next</a>';
var navHTML = '<div class="prev-next">' +
prevLink +
nextLink +
'</div>';
jQuery(document).ready(function( $ ) {
// init
$('#customisesystem > div')
.hide()
.prepend(navHTML);
$('#first-step .prev').remove();
$('#last-step .next').remove();
// show first step
$('#first-step').show();
$('a.next').click(function(){
var whichStep = $(this).parent().parent().attr('id');
if( whichStep == 'first-step' )
{
// validate first-step
}
else if( whichStep == 'second-step' )
{
// validate second-step
}
else if( whichStep == 'last-step' )
{
// validate last-step
}
$(this).parent().parent().hide().next().show();
});
$('a.back').click(function(){
$(this).parent().parent().hide().prev().show();
});
});
jQuery(document).ready(function( $ ) {
$("#customise").click(function(){
$(".entire_product").hide();
$(".customise").show();
});
});
</script>