Jquery 自动完成不会接受我的变量

发布于 2024-12-04 15:57:17 字数 607 浏览 1 评论 0原文

我的 jquery 自动完成有一些问题。我的场景是这样的,我有一个下拉列表,该下拉列表定义了应在自动完成中显示哪种类型的类。例如,下拉列表将类型设置为 1 或 2 或 3 或 4。自动完成应该获取此值并将其传递给 sql,以便它将根据类型在自动完成中显示正确的类。

我的问题是自动完成功能无法获取类型,因此它将显示所有数据并且不会根据类型对其进行过滤。

这是我的代码:

$("#textinput").autocomplete("getclass.php?func=getClass&type="+ $("#type").val(), {
            minChars: 1,
            delay: 400,
            width: 260,
            selectFirst: true, 
            max: 10,
        }).result(function (event, data, formatted){

                    if(data)
        {
            $("#textinput").val(data[1]);    
        }
    });  

I have some issue with my jquery autocomplete. My scenario is like this, I have a dropdown and that dropdown defines which type of class should be displayed in the autocomplete. E.g. the dropdown sets the type to 1 or 2 or 3 or 4. The autocomplete should get this value and pass it to the sql so it will display the right class in the autocomplete according to t the type.

My issue is that the autocomplete does not get the type so it will display all data and does not filter it on the type.

This is my code:

$("#textinput").autocomplete("getclass.php?func=getClass&type="+ $("#type").val(), {
            minChars: 1,
            delay: 400,
            width: 260,
            selectFirst: true, 
            max: 10,
        }).result(function (event, data, formatted){

                    if(data)
        {
            $("#textinput").val(data[1]);    
        }
    });  

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

权谋诡计 2024-12-11 15:57:17

您没有正确选择选项值。试试这个:

$("#textinput").autocomplete("getclass.php?func=getClass&type="+ $('#type option:selected').val(), {
        minChars: 1,
        delay: 400,
        width: 260,
        selectFirst: true, 
        max: 10,
    }).result(function (event, data, formatted){

                if(data)
    {
        $("#textinput").val(data[1]);    
    }
}); 

You're not selecting the option value properly. Try this:

$("#textinput").autocomplete("getclass.php?func=getClass&type="+ $('#type option:selected').val(), {
        minChars: 1,
        delay: 400,
        width: 260,
        selectFirst: true, 
        max: 10,
    }).result(function (event, data, formatted){

                if(data)
    {
        $("#textinput").val(data[1]);    
    }
}); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文