Bootstrap框架多步骤表单

这是一个包含多个步骤的表单,每个步骤展示不同的内容或表单字段。用户通过“下一步”或“上一步”按钮在各步骤之间导航。这个表单通常用于分步骤引导用户完成复杂的任务。

在Bootstrap框架中,可以使用卡片(Card)组件和按钮(Button)组件来创建一个多步骤界面。

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Multi-step Form Example</title>
  <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
  <div class="container mt-5">
    <div class="card">
      <div class="card-header">
        <h4>Multi-step Form Example</h4>
      </div>
      <div class="card-body">
        <div id="step1">
          <h5>Step 1</h5>
          <p>Enter your name:</p>
          <input type="text" class="form-control mb-3" placeholder="Name">
          <button class="btn btn-primary" onclick="showStep(2)">Next</button>
        </div>
        <div id="step2" style="display: none;">
          <h5>Step 2</h5>
          <p>Enter your email:</p>
          <input type="email" class="form-control mb-3" placeholder="Email">
          <button class="btn btn-secondary" onclick="showStep(1)">Previous</button>
          <button class="btn btn-primary" onclick="showStep(3)">Next</button>
        </div>
        <div id="step3" style="display: none;">
          <h5>Step 3</h5>
          <p>Review and Submit:</p>
          <button class="btn btn-secondary" onclick="showStep(2)">Previous</button>
          <button class="btn btn-success">Submit</button>
        </div>
      </div>
    </div>
  </div>

  <script>
    function showStep(step) {
      // Hide all steps
      document.getElementById('step1').style.display = 'none';
      document.getElementById('step2').style.display = 'none';
      document.getElementById('step3').style.display = 'none';

      // Show the current step
      document.getElementById('step' + step).style.display = 'block';
    }
  </script>

  <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
  <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>
  1. HTML结构:使用了Bootstrap的卡片组件(Card)来包裹多步骤表单的内容。
  2. 步骤显示:每个步骤都是一个<div>元素,初始状态下只有第一个步骤显示,其余的步骤通过CSS的display: none隐藏。
  3. 按钮导航:每个步骤都有“下一步”和“上一步”按钮,点击这些按钮会调用JavaScript函数showStep(step),根据传递的步骤编号显示相应的内容。
  4. JavaScript控制showStep函数负责隐藏所有步骤并显示指定的步骤。

这个只是一个基本的实现,根据实际需要添加更多的功能和样式,如表单验证、进度指示器等。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

少陽君

谢谢老板的拿铁

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值