是否可以自动调整建议宽度?
代码:
$('#tags').tagit({
singleField: true,
singleFieldNode: $('#mySingleField'),
allowSpaces: true,
minLength: 2,
removeConfirmation: true,
tagSource: function (request, response) {
//console.log("1");
$.ajax({
url: "tagit/search.php",
data: {
term: request.term
},
dataType: "json",
max: 5,
success: function (data) {
response($.map(data.slice(0, 5), function (item) {
return {
label: item.value,
value: item.value
}
}));
}
});
}
});
});
我希望有人可以提前帮助。