提前输入3个字符后的服务器调用

时间:2018-10-08 06:32:59

标签: jquery ajax asp.net-mvc

使用jstrong_ajaxChosen 方法从jquery中为预先键入的文本框进行服务器调用,现在仅在将3个字符插入文本框后才需要调用服务器方法,但使用mintermLenth无法使用

>
$("#test").ajaxChosen({
    minTermLength:3,
    dataType: 'json',
    type: 'POST',
    url: $('#test').attr("typeahead")},{
        processItems: function (data) {
            return _.map(data, function (v) { return { id: v.Value, text: v.Text } }) 
    }
});

0 个答案:

没有答案