2

我需要帮助,我一直在尝试使以下案例场景起作用:您有电子邮件输入字段,您输入:foo@y - 它应该弹出自动完成框,提供 yahoo.com(例如)。如果你接受这个建议,最终值应该变成:foo@yahoo.com

我已经编写了这段代码(修改了另一个 jquery UI 示例):


        $( "#tags" )
            // don't navigate away from the field on tab when selecting an item
            .bind( "keydown", function( event ) {
                if ( event.keyCode === $.ui.keyCode.TAB &&
                        $( this ).data( "autocomplete" ).menu.active ) {
                    event.preventDefault();
                }
            })
            .autocomplete({
                minLength: 3,
                source: function( request, response ) {
                            var mail_regex = /^([\w.]+)@([\w.]+)$/;
                            var match = mail_regex.exec(request.term);
                            if (match)
                                var matcher = new RegExp( "^" + match[2], "i" );
                            response( $.grep( availableTags, function( item ){
                                return matcher.test( item );
                            }) );
                 },
                focus: function() {
                    // prevent value inserted on focus
                    return false;
                },
                select: function( event, ui ) {
                    var terms = split( this.value );
                    // 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;
                }
            });

完整的工作交互示例:http: //jsfiddle.net/rRF2s/3/

但是,它仅用 yahoo.com 替换了 foo@ - 我一生都无法弄清楚如何覆盖这种行为......

任何 Javascript/jQuery 大师 - 请帮助!如何实现这个目标?我试过这样做:return match[1]+matcher.test(item),但这不起作用。

4

2 回答 2

3

这是完整的代码:

$(function() {
    var availableTags = [
        "Yahoo.com",
        "Gmail.com"
    ];
    function extractLast( val ) {
        if (val.indexOf("@")!=-1){
            var tmp=val.split("@");
            console.log(tmp[tmp.length-1]);
            return tmp[tmp.length-1];
        }
        console.log("returning empty");
        return "";
    }

    $( "#tags" )
        // don't navigate away from the field on tab when selecting an item
        .bind( "keydown", function( event ) {
            if ( event.keyCode === $.ui.keyCode.TAB &&
                    $( this ).data( "autocomplete" ).menu.active ) {
                event.preventDefault();
            }
        })
        .autocomplete({
            minLength: 1,
            source: function( request, response ) {
                        var mail = extractLast(request.term);
                        if(mail.length<1){return;}
                        var matcher = new RegExp( "^" + mail, "i" );
                        response( $.grep( availableTags, function( item ){
                            return matcher.test( item );
                        }));
             },
            focus: function() {
                // prevent value inserted on focus
                return false;
            },
            select: function( event, ui ) {
                var terms = this.value.split(", ");
                // remove the current input
                var ml=terms[terms.length-1].split("@")[0];
                terms.pop();
                // add the selected item
                terms.push( ml+"@"+ui.item.value );
                // add placeholder to get the comma-and-space at the end
                terms.push( "" );
                this.value = terms.join( ", " );
                return false;
            }
        });
});
于 2012-11-25T15:06:45.603 回答
3

select函数将结果值分配给this.value =。但是,它完全替换了输入值,而不是将其附加到下拉值中。

如果没有对以下内容进行大量测试,简化的功能似乎可以按要求工作:

select: function( event, ui ) {
    this.value = this.value.substring(0, this.value.indexOf('@') + 1) + ui.item.value;
    return false;
}

这是取已输入值的第一部分,例如foo@用于输入foo@ya,然后从下拉列表中添加所选项目的值。

您可能希望在有人输入@符号时触发下拉菜单(对我来说似乎更直观),如果是这样,此功能可能还需要修改以正确提取用户输入的值。

于 2012-11-25T15:07:30.813 回答