如何创建 - 多步骤表单
了解如何创建包含多个步骤的表单。
表单向导 - 多步表单:
步骤 1) 添加 HTML:
实例
<form id="regForm" action="">
<h1>Register:</h1>
<!-- 表格中的每个步骤都有一个"选项卡": -->
<div class="tab">Name:
<p><input
placeholder="First name..." oninput="this.className = ''"></p>
<p><input placeholder="Last name..." oninput="this.className = ''"></p>
</div>
<div class="tab">Contact Info:
<p><input
placeholder="E-mail..." oninput="this.className = ''"></p>
<p><input
placeholder="Phone..." oninput="this.className = ''"></p>
</div>
<div class="tab">Birthday:
<p><input placeholder="dd" oninput="this.className
= ''"></p>
<p><input placeholder="mm" oninput="this.className =
''"></p>
<p><input placeholder="yyyy" oninput="this.className =
''"></p>
</div>
<div class="tab">Login Info:
<p><input
placeholder="Username..." oninput="this.className = ''"></p>
<p><input placeholder="Password..." oninput="this.className = ''"></p>
</div>
<div style="overflow:auto;">
<div style="float:right;">
<button type="button" id="prevBtn" onclick="nextPrev(-1)">Previous</button>
<button type="button" id="nextBtn" onclick="nextPrev(1)">Next</button>
</div>
</div>
<!-- Circles which indicates the steps of the form: -->
<div style="text-align:center;margin-top:40px;">
<span
class="step"></span>
<span class="step"></span>
<span
class="step"></span>
<span class="step"></span>
</div>
</form>
步骤 2) 添加 CSS:
样式化表单元素:
实例
/* 为表单设置样式 */
#regForm {
background-color: #ffffff;
margin: 100px auto;
padding: 40px;
width:
70%;
min-width: 300px;
}
/* 为输入字段设置样式 */
input {
padding: 10px;
width: 100%;
font-size: 17px;
font-family: Raleway;
border: 1px solid #aaaaaa;
}
/* 标记验证时出错的输入框:*/
input.invalid
{
background-color: #ffdddd;
}
/* 默认隐藏所有步骤:*/
.tab {
display: none;
}
/* 用圆圈表示表单的步骤:*/
.step {
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbbbbb;
border: none;
border-radius: 50%;
display: inline-block;
opacity: 0.5;
}
/* 标记活动步骤:*/
.step.active {
opacity: 1;
}
/* 标记已完成且有效的步骤:*/
.step.finish {
background-color: #4CAF50;
}
步骤 3) 添加 JavaScript:
实例
var currentTab = 0;
// 当前选项卡设置为第一个选项卡 (0)
showTab(currentTab);
// Display the current tab
function showTab(n) {
// 此函数将显示表单的指定选项卡 ...
var x = document.getElementsByClassName("tab");
x[n].style.display =
"block";
// ... 并修复上一个/下一个按钮:
if (n == 0) {
document.getElementById("prevBtn").style.display
= "none";
} else {
document.getElementById("prevBtn").style.display
= "inline";
}
if (n == (x.length - 1)) {
document.getElementById("nextBtn").innerHTML = "Submit";
} else {
document.getElementById("nextBtn").innerHTML = "Next";
}
// ... 并运行一个显示正确步长指示器的函数:
fixStepIndicator(n)
}
function nextPrev(n) {
// 此函数将确定要显示哪个选项卡
var x = document.getElementsByClassName("tab");
// 如果 current 选项卡中的任何字段无效,则退出函数:
if (n == 1 && !validateForm()) return false;
// 隐藏当前选项卡:
x[currentTab].style.display = "none";
// 将当前选项卡增加或减少 1:
currentTab = currentTab + n;
// 如果您已到达表单的末尾... :
if (currentTab >= x.length) {
//...表单被提交:
document.getElementById("regForm").submit();
return false;
}
// 否则,显示正确的选项卡:
showTab(currentTab);
}
function validateForm() {
// 此函数处理表单字段的验证
var x, y, i, valid = true;
x = document.getElementsByClassName("tab");
y = x[currentTab].getElementsByTagName("input");
// 检查当前选项卡中每个输入字段的循环:
for (i = 0; i < y.length; i++) {
// 如果字段为空...
if (y[i].value == "") {
// 向字段添加一个"invalid" 类:
y[i].className += " invalid";
// 并将当前有效状态设置为 false:
valid = false;
}
}
// 如果有效状态为真,则将该步骤标记为已完成且有效:
if (valid) {
document.getElementsByClassName("step")[currentTab].className
+= " finish";
}
return valid;
// 返回有效状态
}
function fixStepIndicator(n) {
// 此函数删除所有步骤的 "active" 类...
var
i, x = document.getElementsByClassName("step");
for (i = 0; i <
x.length; i++) {
x[i].className = x[i].className.replace("
active", "");
}
//... and adds the "active" class to the
current step:
x[n].className += " active";
}
亲自试一试 »