带自动完成功能 平面jQuery标签输入插件 inputTags

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

简介

inputTags是一个漂亮的、扁平的jQuery标签输入插件,它允许您管理文本输入中的标签,并支持自动完成和标签验证。

如何使用它:

1.加载输入Tags.css默认插件样式的标题中。

  1. <link rel="stylesheet" href="css/inputTags.css">

2.为输入的标签创建一个文本字段。

  1. <input type="text" id="tags">

3.加载JQuery库和输入标签.js在网页底部。

  1. <script src="jquery.min.js"></script>
  2. <script src="js/inputTags.jquery.js"></script>

4.使用预定义标签列表初始化插件。

  1. $('#tags').inputTags({
  2. tags: ['jQuery', 'JavaScript']
  3. });

5.为自动完成列表添加一组标记,当用户键入时,自动完成列表将显示其余标记。

  1. $('#tags').inputTags({
  2. autocomplete: {
  3. values: ['jQuery', 'JavaScript']
  4. }
  5. });

6.更多配置选项。

  1. // an array of tags
  2. tags: [],
  3. keys: [],
  4.  
  5. // for tags validation
  6. minLength: 2,
  7. maxLength: 30,
  8. max: 6,
  9.  
  10. // Events
  11. init: false,
  12. create: false,
  13. update: false,
  14. destroy: false,
  15. focus: false,
  16. selected: false,
  17. unselected: false,
  18. change: false,
  19.  
  20. // editable
  21. editable: true,
  22.  
  23. // for autocomplete list
  24. autocomplete: {
  25. values: [],
  26. only: false
  27. },
  28.  
  29. // custom error messages
  30. errors: {
  31. empty: 'Attention, vous ne pouvez pas ajouter un tag vide.',
  32. minLength: 'Attention, votre tag doit avoir au minimum %s caractères.',
  33. maxLength: 'Attention, votre tag ne doit pas dépasser %s caractères.',
  34. max: 'Attention, le nombre de tags ne doit pas dépasser %s.',
  35. exists: 'Attention, ce tag existe déjà !',
  36. autocomplete_only: 'Attention, vous devez sélectionner une valeur dans la liste.',
  37. timeout: 8000
  38. }

7.事件。

  1. $('#tags').inputTags({
  2. init: function($elem) {
  3. console.log('Event called on plugin init', $elem);
  4. },
  5. create: function() {
  6. console.log('Event called when an item is created');
  7. },
  8. update: function() {
  9. console.log('Event called when an item is updated');
  10. },
  11. destroy: function() {
  12. console.log('Event called when an item is deleted');
  13. },
  14. selected: function() {
  15. console.log('Event called when an item is selected');
  16. },
  17. unselected: function() {
  18. console.log('Event called when an item is unselected');
  19. },
  20. change: function($elem) {
  21. console.log('Event called on item change', $elem);
  22. }
  23. });

更新日志:

2022-02-24

  • 重构

2022-02-23

  • 使用e.key

2016-07-28

  • 更新CSS和JS

2016-07-27

  • 修复自动完成问题

2015-10-19

  • 修复默认值问题+添加自动完成TagSelect事件

2015-10-14

  • 添加默认输入值检查

2015-08-17

  • 修复自定义标签填充问题

预览截图