最近维护一个项目需要监听input搜索然后下拉选择今天分享一下

1.html代码:

<div class="td-search"><input type="text" id="searchInput">
                        &lt;div id="searchResults"&gt;</div&gt;
 </div>

2.css代码

<style>
    .td-search {
        position: relative;
    }
    .d-search {
        position: absolute;
        top: 49px;
        left:15px;
        background: white;
        border: 1px solid #000 !important;
    }
    .search-result {
        border-bottom: 1px solid #e3e3e3 !important;
        padding: 10px ;
        cursor: pointer;
    }
</style>

3.js部分

$(function () {
 $("#searchResults").hide();
        $('#searchInput').on('input', function () {
            var searchValue = $(this).val();
            if (searchValue.length >= 1) {
                $.ajax({
                    url: '/search', 
                    method: 'POST', 
                    data: { key: searchValue, sessionToken: sessionToken },
                    success: function (response) {
                        // 清空之前的搜索结果
                        $('#searchResults').empty();
                        $("#searchResults").show();
                        // 生成新的搜索结果
                        $.each(response.data, function (index, result) {
                            let item = `<div  class="search-result" 
           data-id='${result.userId}'>${result.name}-${result.mobile}</div>`;
                            $('#searchResults').append(item);
                        });
                    },
                    error: function (error) {
                        console.log(error);
                    }
                });
            } else {
                $('#searchResults').html(''); 
            }
        });

        $(document).on('click', '.search-result', function () {
            var resultValue = $(this).text();
            let bindUserId=$(this).data("id");
            $('#searchInput').val(resultValue);
            $('#searchResults').html('');
            $("#searchResults").hide();
        });


});

这段代码中,使用jQueryon方法绑定input事件监听器。在监听器中我们获取用户输入的值,并向服务器发送一个Ajax请求。在响应成功的回调函数中,我们使用empty方法清空之前的搜索结果然后使用each方法遍历服务返回结果数组,生成新的搜索结果。在响应错误回调函数中,我们输出错误信息

原文地址:https://blog.csdn.net/clyjjczwdd/article/details/129729543

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_23396.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注