使用jQuery插件Tag-it ...想要使用myArray [i] .tag而不是myArray中的所有内容,怎么样?

时间:2011-11-21 09:33:52

标签: javascript jquery arrays jquery-plugins tags

所以,我正在使用tag-it jquery插件:http://aehlke.github.com/tag-it/

他们将数组作为['tag 1','tag 2','tag 3'等)发送。

我想做的是让它更像下面,我只是在寻找标签,即allAccounts [i] .tag而不是allAccounts

var allAccounts = new Array();

function account(id, network, tag)
{
    this.id = id;
    this.network = network;
    this.tag = tag;
}

allAccounts.push(new account(
    123,
    'facebook',
    'my tag'
));

有没有人有任何想法?

来自插件:

if (this.options.availableTags || this.options.tagSource) {
    this._tagInput.autocomplete({
        source: this.options.tagSource,
        select: function(event, ui) {
            if (that._tagInput.val() === '') {
                that.removeTag(that._lastTag(), false);
            }
            that.createTag(ui.item.value);
            // Preventing the tag input to be updated with the chosen value.
            return false;
        }
    })

其中availableTags =在

中传递的数组

来源:http://aehlke.github.com/tag-it/js/tag-it.js

0 个答案:

没有答案