4

入力タグフィールドがあり、選択したタグの ID を取得したいので、http://jsfiddle.net/u8zj5/19/を試してみましたが、渡すラベルや値ではなく ID を取得したいという問題がありますid="show"しかし、私は失敗しました。

<input type="text" id="field1" name="field1" value=""/>
<span id="show">show ID here</span>

jQuery(document).ready(function(){
var availableTags = [{"id":"144","label":"Allicelabel","value":"Allice value"}];
jQuery("input#field1").each(function(){
    var target = jQuery(this);
    var currenttags = target.val();
    target.hide()        
          .after("<ul class=\"tags\"><li>"+currenttags+"</li></ul>");
    var instance = target.next();
    instance.tagit({
        tagSource:availableTags,
        tagsChanged:function () {
            var tags = instance.tagit('tags');
            var tagString = [];
            for (var i in tags){
                tagString.push(tags[i].value);
            }
            $("#show").html(tagString.join(','));
        },
        sortable:true,
        triggerKeys: ['enter', 'comma', 'tab']
    });
});

});

ここでjQuery Tagit (デモページ)を使用した人は誰でも、これを解決するのを手伝ってくれます

4

3 に答える 3

9

私も同じ問題を抱えていましたが、プラグインのデフォルトの動作を変更したくありませんでした。そのため、代わりに、提供されたフックを使用して新しい動作を追加しました。

var availableTags = [
    {
        label: "myTag",
        value: "myTag",
        id: 1
    },
    //etc...
];
var assignedTags = [];


$('#singleinputfield').tagit( {
                            tagSource: function (request, response) {
                                    //setup the search to search the label
                                    var matcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), "i");
                                    response($.grep(availableTags, function (value) {
                                        return matcher.test(value.label);
                                    }));
                            },
                            beforeTagAdded: function(event, ui){
//get id for that tag and signal if it was in the tagSource list
                                var id, result = false;
                                $.each(availableTags, function(){
                                    if(ui.tagLabel === this.label){
                                        result = true;
                                        id=this.id;
                                        return false;
                                    }
                                });
                                if(result){
//put id in the list of ids we are using
                                    assignedTags.push(id);
                                }
                                return result;
                            },
                            afterTagAdded: function(event, ui){
//replace the values in the single input field with the assigned ids
                                    $('#singleinputfield').val(assignedTags.join(','));
                            },
                            afterTagRemoved: function(event, ui){
                                $('#singleinputfield').val(assignedTags.join(','));
                            },
                            beforeTagRemoved: function(event, ui){
                                var id;
//get the id for the removed tag and signal if it was in the tagSource list
                                $.each(availableTags, function(){
                                    if(ui.tagLabel === this.label){
                                        result = true;
                                        id = this.id;
                                        return false;
                                    }
                                });
                                if(result){
//remove the unassigned tag's id from our list
                                    assignedTags = $.grep(assignedTags, function(el){
                                        return el != id;
                                    });
                                }
                            }
                        });
于 2013-11-08T18:21:36.417 に答える
3

私は同じ問題を抱えていましたが、tag-it.jsを変更しました。ID関数selectを呼び出すときは、関数を介して送信する必要があります_addTag

self._addTag(ui.item.label, ui.item.value, ui.item.id);

次に、IDを取得する必要があります:

_addTag: function(label, value, id) {
    ...
    this._addSelect(label, value, id);
    ...
}

そして、ここIDで非表示の Select に追加します

_addSelect: function(label, value, id) {
        var opt = $('<option>').attr({
            'selected':'selected',
            'value':id
        }).text(label);
        this.select.append(opt);

これにより、オートコンプリート リスト用の 1 つのラベル、タグに表示する 1 つの値、およびID非表示の選択を使用できます。

于 2012-08-12T20:31:17.443 に答える
0

Select2 などの他のプラグインを使用します。これは実際にサポートを受けています。

于 2013-11-28T12:57:46.483 に答える