时间:2010-07-23 16:10:56

标签: c# asp.net drop-down-menu postback typeahead

1 个答案:

答案 0 :(得分:0)

提供您使用Type Ahead的最新版本,该库实际上带有一组可用的回调函数here.

要执行回调,只需在初始化类型提前时通过bind方法传入它。示例代码:

        // attach type-ahead to class
        $autoComplete.typeahead({
            hint: true,
            highlight: true,
            minLength: 1
        }, {
            displayKey: 'value',
            source: substringMatcher($autoCompleteData)
        }).bind("typeahead:selected", function (obj, datum, name) {
            console.log(obj, datum, name);
        });

当用户单击选项或点击选项上的返回键时,将执行末尾的.bind方法。将console.log条目替换为您想要执行的任何操作,即将触发器按钮定位为单击。