所以,我正在使用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 =在
中传递的数组