jQuery UI自动完成修复建议宽度

时间:2015-04-24 11:35:08

标签: jquery autocomplete

是否可以自动调整建议宽度?

enter image description here

  • Windows Server 2008应该在一行上。

代码:

$('#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
                    }
                }));
            }
        });
    }
});
});

我希望有人可以提前帮助。

0 个答案:

没有答案