3

我正在使用 jQuery UI 自动完成功能,并试图限制多个结果。基本上我正在构建一个 PM 系统,我正在使用 to 字段的自动完成功能。但我试图限制一条消息可以发送给的人数。所以就像将最大选择限制为 25。

有没有办法限制这个?还有关于视觉指示器的任何想法,它们已达到最大值?

 select: function( event, ui){
    var terms = split( this.value );
    if(terms.length <= 2)
    {
        // remove the current input
        terms.pop();
        // add the selected item
        terms.push( ui.item.value );
        // add placeholder to get the comma-and-space at the end
        terms.push( "" );
        this.value = terms.join( ", " );
        return false;
    }
    else
    {
        $(this).effect("highlight", {}, 1000);
        $(this).addClass("red");
        $("#warnings").html("<span style='color:red;'>Max people reached</span>");
        return false;
    }
}
4

1 回答 1

4

这可以通过监听事件轻松实现。例如,您可以通过添加类和删除类以自动完成来使颜色变为红色。我认为您可以通过一点点努力自己完成此操作。

select: function( event, ui ) {
    var terms = split( this.value );
    if(terms.length <= 2) { 
        // remove the current input
        terms.pop();
        // add the selected item
        terms.push( ui.item.value );
        // add placeholder to get the comma-and-space at the end
        terms.push( "" );
        this.value = terms.join( ", " );
        return false;
    } else {
        var last = terms.pop();
        $(this).val(this.value.substr(0, this.value.length - last.length - 2)); // removes text from input
        $(this).effect("highlight", {}, 1000);
        $(this).addClass("red");
        $("#warnings").html("<span style='color:red;'>Max people reached</span>");
        return false;
    }
}

PS我也认为这些插件中的一个可能是合适的,这要归功于谷歌


  1. https://github.com/loopj/jQuery-Tokenizing-Autocomplete-Plugin

    在我看来看起来不错:

    演示标记自动完成插件

    点击链接观看现场演示

  2. http://net.tutsplus.com/tutorials/javascript-ajax/how-to-use-the-jquery-ui-autocomplete-widget/

  3. Facebook 风格的 JQuery 自动完成插件
于 2011-01-27T00:39:27.747 回答