Bootstrap 5 简易表单操作库

  • 源码大小:29.64KB
  • 所需积分:1积分
  • 源码编号:19JP-3715
  • 浏览次数:760次
  • 最后更新:2023年07月14日
  • 所属栏目:表单
本站默认解压密码:19jp.com 或 19jp_com

简介

一个轻量级但功能强大的jQuery插件,可帮助您动态生成基于Bootstrap 5的表单元素,并提供一组方便的API方法来与表单的元素和值进行交互。

如何使用它:

1.在文档中加载最新的jQuery库、Bootstrap 5框架和Bootstrap图标(可选)。

  1. <!-- jQuery -->
  2. <script src="/path/to/cdn/jquery.min.js"></script>
  3.  
  4. <!-- Bootstrap 5 -->
  5. <link rel="stylesheet" href="/path/to/cdn/bootstrap.min.css" />
  6. <script src="/path/to/cdn/bootstrap.bundle.min.js"></script>
  7.  
  8. <!-- Bootstrap Icons -->
  9. <link rel="stylesheet" href="/path/to/cdn/bootstrap-icons.min.css" />

2.在页面上创建一个空的表单元素。

  1. <form id="form"></form>

3.调用函数并使用您自己的数据(字段和按钮)填充表单,如下所示:

  1. $('#form').bootstrapForm({
  2.  
  3. // form heading
  4. heading: {
  5. text: 'Login',
  6. divider: true,
  7. },
  8.  
  9. // form fields
  10. fields: {
  11.  
  12. 'username': {
  13. required: true,
  14. label: {text: 'Username',},
  15. // dimension: 'sm', // or 'lg'
  16. // disabled: true,
  17. // plain: false,
  18. // readonly: false,
  19. // value: 'value',
  20. // floating: false,
  21. },
  22.  
  23. 'password': {
  24. // 'checkbox', 'color', 'email', 'file'
  25. // 'list', 'number', 'password', 'radio'
  26. // 'range', 'select', 'switch'
  27. // 'text', 'textarea'
  28. type: 'password',
  29. required: true,
  30. label: {text: 'Password',},
  31. },
  32.  
  33. 'my-textarea': {
  34. type: 'textarea',
  35. rows: 6,
  36. },
  37.  
  38. 'my-file': {
  39. type: 'file',
  40. accept: ['.pdf', '.docx', 'application/msword',],
  41. multiple: true,
  42. },
  43.  
  44. 'my-list': {
  45. type: 'list',
  46. list: 'exampleList',
  47. options: [
  48. 'Example option 1',
  49. 'Example option 2',
  50. 'Example option 3',
  51. ],
  52. },
  53.  
  54. 'my-select': {
  55. type: 'select',
  56. options: {
  57. '0': 'Select option...',
  58. 'a': 'Example option 1',
  59. 'b': 'Example option 2',
  60. 'c': 'Example option 3',
  61. },
  62. multiple: true,
  63. size: 3,
  64. },
  65.  
  66. 'my-number': {
  67. type: 'number',
  68. min: 5,
  69. max: 25,
  70. step: 0.5,
  71. },
  72.  
  73. 'my-range': {
  74. type: 'range',
  75. min: 5,
  76. max: 25,
  77. step: 0.5,
  78. },
  79.  
  80. 'my-radio': {
  81. type: 'radio',
  82. family: 'exampleFamily',
  83. value: 1,
  84. checked: true,
  85. inline: true,
  86. },
  87.  
  88. 'my-switch': {
  89. type: 'switch',
  90. checked: true,
  91. inline: false,
  92. },
  93.  
  94. 'keep-me-logged': {
  95. type: 'checkbox',
  96. checked: true,
  97. // indeterminate: false,
  98. // inline: false,
  99. label: {text: 'Keep me logged in',},
  100. help: {
  101. identifier: 'keepMeLoggedHelp',
  102. text: 'We use cookies.',
  103. },
  104. },
  105. },
  106.  
  107. // buttons
  108. buttons: {
  109. 'login': {
  110. text: 'Login',
  111. type: 'submit',
  112. icon: { // Bootstrap icons
  113. glyph: 'chevron-compact-right',
  114. placement: 'end',
  115. },
  116. attributes: {
  117. class: 'btn-primary',
  118. },
  119. onClick(event) {/* ... */},
  120. },
  121. },
  122.  
  123. // callback
  124. onSubmit(event, formData) {
  125. console.log(formData.username);
  126. console.log(formData.password);
  127. console.log(formData['keep-me-logged']);
  128. },
  129.  
  130. beforeSubmit(event, formData) {/* ... */}
  131.  
  132. });

4.可用的插件选项:

  1. $('#form').bootstrapForm({
  2.  
  3. // prevent the default submit event
  4. preventDefault: true,
  5.  
  6. // the number of multiple options to display at once
  7. selectSize: 3,
  8.  
  9. // the number of rows
  10. textareaRows: 3,
  11. // use the name attribute as unique identifier
  12. // false = use the ID attribute
  13. useName: false,
  14.  
  15. // show validation text
  16. validationText: false,
  17. });

5.可用的公共方法:

  1. // clear all form fields
  2. $('#form').bootstrapForm('emptyForm');
  3.  
  4. // get form fields
  5. const data = $('#form').bootstrapForm('getFields');
  6.  
  7. // get instance
  8. $('#form').bootstrapForm('getInstance');
  9.  
  10. // reset the form
  11. $('#form').bootstrapForm('resetForm');
  12.  
  13. // remove all the validation-related classes
  14. $('#form').bootstrapForm('resetValidation');
  15.  
  16. // trim all the input values
  17. $('#form').bootstrapForm('trimFields');

预览截图