motaij

功能描述

  1. jQuery Bootstrap弹窗加多步骤向导

快速使用

需要调用

  1. html button 出发弹窗
  2. <button class="btn btn-lg btn-primary" data-toggle="modal" data-target="#submitModal">打开向导模态窗口</button>
  3. 有一个div作为容器存放
  4. <div id="submitModal" class="multi-step"> </div>
  5. js步骤联
  6. $(document).ready(function() {
  7. $('.modal').MultiStep({
  8. title: '步骤框',
  9. data: [{
  10. content: 'Hi!!',
  11. label: '自定义标签'
  12. }, {
  13. content: '这是一个多步骤模式'
  14. }, {
  15. content: `你可以选择跳过`,
  16. skip: true
  17. }, {
  18. content: ` < small > 您也可以包含HTML内容! < /small><br><br>
  19. <div class="form-group">
  20. <label for="exampleInputEmail1">电邮地址</label > < input type = "email"
  21. class = "form-control"
  22. id = "exampleInputEmail1"
  23. aria - describedby = "emailHelp"
  24. placeholder = "Enter email" > < small id = "emailHelp"
  25. class = "form-text text-muted" > 我们绝不会把你的邮件告诉别人。
  26. < /small>
  27. </div > `,
  28. skip: true
  29. }, {
  30. content: `这是结束 < BR > 屏住呼吸,数到十`,
  31. }],
  32. final: '你可以有你自己的最后消息',
  33. modalSize: 'lg'
  34. });
  35. });

特别说明