2

您好我正在使用带有多个输入标签的 Jquery 自动完成功能。我的问题是我无法在我的自动完成功能中获取当前用户输入值。

这是我的代码

 function Call() {

var str = $("#auto").val();
var substr = str.split(',');

$(".inputcatalog").each(function () {

    var classes = $(this).attr("class").split(" ");
    var id = classes[classes.length - 1];
    $this = $(this);

    var stype = id;
    var srctxt = $this.val();

    substr.forEach(function (item) {
        if (id == item) {
            AutoComplete($this, stype)
        }

    });


});


 }

//我的自动竞争功能

 function AutoComplete(object, filter) {

$this = object;
var stype = filter;
var srctxt = $this.val();
$this.autocomplete({
    source: function (request, response) {
        $.getJSON('/Cataloging/Bib/AutoComplete',
             {

                 stype: stype,
                 term: $this.val()
             }, response);
    },
    select: function (event, ui) {

        // Do something with "ui.item.Id" or "ui.item.Name" or any of the other properties you selected to return from the action
    }
});

 }

我的期限值为空

4

1 回答 1

0

在源函数中,request参数是一个具有termas 属性的对象:

尝试使用:

term: request.term

代替

term: $this.val()

API 参考:http ://api.jqueryui.com/autocomplete/#option-source

于 2012-12-24T07:05:16.473 回答