14

刚刚尝试了出色的 Tag-It!jquery 的插件(http://aehlke.github.com/tag-it/),但我无法让它按我的意愿工作。

我有一个像这样的对象列表:

var food = [{value:1,label:'Pizza'},{value:2,label:'Burger'},{value:3,label:'Salad'}];

我在我的设置中传递给 tagSource 选项:

$("#my_food_tags").tagit({
    tagSource: food,
    singleField: true,
    singleFieldNode: $("#my_food"),
    placeholderText: "Start typing a food name"
});

这很好用,除了当我单击自动完成列表项时,它会在标签中显示数值,而不是食物名称。

因此,有可能必须将“值”输入到隐藏字段中,并将“标签”显示为标签名称?

这是我的意思的屏幕截图。该值出现在标签标签中,并且标签正在丢失到以太;-)

标签文本丢失的示例

有人可以在这里帮助我吗?将不胜感激!

在此先感谢,

4

7 回答 7

6

尝试使用它,请参阅:http: //jsfiddle.net/pDrzx/46/

我做了什么:

用 labelname 扩展 createTag 函数

 createTag: function(labelname, value, additionalClass)

并在标签创建 var 上调用它

var label = $(this.options.onTagClicked ? '<a class="tagit-label"></a>' : '<span class="tagit-label"></span>').text(labelname);

然后我确保隐藏的输入字段具有数值(用于保存目的)

  if (this.options.singleField) {
        var tags = this.assignedTags();
        tags.push(value);
        this._updateSingleTagsField(tags);
    } else {
        var escapedValue = value;
        tag.append('<input type="hidden" style="display:none;" value="' + escapedValue + '" name="' + this.options.itemName + '[' + this.options.fieldName + '][]" />');
    }

最后我将标签名称添加到自动完成和焦点

        // Autocomplete.
        if (this.options.availableTags || this.options.tagSource) {
            this._tagInput.autocomplete({
                source: this.options.tagSource,
                select: function(event, ui) {
                    // Delete the last tag if we autocomplete something despite the input being empty
                    // This happens because the input's blur event causes the tag to be created when
                    // the user clicks an autocomplete item.
                    // The only artifact of this is that while the user holds down the mouse button
                    // on the selected autocomplete item, a tag is shown with the pre-autocompleted text,
                    // and is changed to the autocompleted text upon mouseup.
                    if (that._tagInput.val() === '') {
                        that.removeTag(that._lastTag(), false);
                    }
                    that.createTag(ui.item.label,ui.item.value);
                    // Preventing the tag input to be updated with the chosen value.
                    return false;
                },
            focus: function(event, ui) {
                event.preventDefault();
                that.createTag(ui.item.label,ui.item.value);
            }
            });

所以缺少什么,你需要确保它在所有 createTag 方法中传递标签名,但这不应该太难:)


重点更新(灵感来自@Edwin)

于 2012-04-05T22:40:39.280 回答
4

最简单的事情是获得真正支持这一点的插件。即 Select2 或 Chosen。

于 2013-11-28T13:01:51.310 回答
2

在他用 //Autocomplete 注释的 tag-it.js 文件中,添加一个事件选项焦点,就像我在下面所做的那样。这应该解决它。

 // Autocomplete.
        if (this.options.availableTags || this.options.tagSource || this.options.autocomplete.source) {
            var autocompleteOptions = {
                select: function(event, ui) {
                    that.createTag(ui.item.value);
                    // Preventing the tag input to be updated with the chosen value.
                    return false;
                },
                focus: function(event, ui) {
                    event.preventDefault();
                    that.tagInput.val(ui.item.label);
                }

            };
于 2012-12-12T19:58:56.050 回答
2

我发现解决此问题的最简单方法是在 tag-it Javascript 源代码中更改此行:

that.createTag(ui.item.value);

that.createTag(ui.item.label);

这是我的编辑器中从第 216 行开始的代码自动完成部分的一部分:

// Autocomplete.
            if (this.options.availableTags || this.options.tagSource) {
                this._tagInput.autocomplete({
                    source: this.options.tagSource,
                    select: function(event, ui) {
                       // Lots of comments here
                        if (that._tagInput.val() === '') {
                            that.removeTag(that._lastTag(), false);
                        }
                        that.createTag(ui.item.value);
                        value.
                        return false;
                    }
                });
            }
于 2012-04-13T07:50:21.257 回答
1

这是另一种解决方法(假设您要使用 data-id 属性):

  var clone = $('#tags').clone();
  // important to clone before calling tagit()
  $('#tags').tagit({
     beforeTagRemoved: function(event, ui) {
        var item_id = clone.find('li:contains('+ui.tagLabel+')').data('id');
        // do something with item_id / tag ui
     }
  });

随附的 HTML:

<ul id="tags">
 <li data-id="38">Item A</li>
 <li data-id="19">Item B</li>
</ul>
于 2014-01-28T19:14:44.583 回答
0

覆盖focus事件来处理标签和值并不简单。我的解决方案包括使用从事件close中保存的最后一个引用来创建标签:ui.itemfocus

$$("#search-widget-input")
.tagit(
    {
    placeholderText : 'Select or type a location, postcode or Web ID',
    autocomplete : {
        delay : 200, 
        minLength : 1,
        search : function(event, ui) {
            ...
        },
        select: function(event, ui) {
            // use the item's label instead of value
            $$("#search-widget-input").tagit("createTag", ui.item.label, '__value__' + ui.item.value);
            return false; // prevents the tag input to auto tag the ui.item.value 
        },
        focus: function(event,ui) {
          // `focus` event does not fire `select` but does fires `close` event
          // so we store our `ui.item` which allows us to reference it in `close` event
          event.preventDefault();
          self.oAutoCompleteSavedLastUiItem = ui.item;
        },
        close: function(event, ui) {
          event.preventDefault();
          $$("#search-widget-input").tagit("createTag", self.oAutoCompleteSavedLastUiItem.label, '__value__' + self.oAutoCompleteSavedLastUiItem.value);
          return false; // prevents the tag input to auto tag the ui.item.value 
        },
        source : function fAutocompleteSource(oRequest, fResponse) {
            ...
        }
        ...
    }
    ...
});
于 2014-10-24T17:22:50.777 回答
0

嗨,我刚刚用 PHP 为我的项目完成了它。

我在某个时候修改了插件,所以使用来自 jsfiddle 脚本部分的脚本。

看这里我已经制作了完整的工作键值对脚本https://jsfiddle.net/656pnLsd/

<ul id="tag_list">
      <li data-value="2">test2</li>
<ul>
<script>
var tag_sources = [{value:1,label:'test1'},{value:2,label:'test2'}];
            console.log(tag_sources);
            jQuery(document).ready(function() {
              var eventTags = $('#tag_list');
                   eventTags.tagit({
                    availableTags: tag_sources,
                    fieldName: "bento4_tags",
                    singleField: true,

                }); 
            });
</script>

重点更新(灵感来自@Edwin 和 Marco Johannesen)

于 2016-02-27T12:54:22.960 回答