中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C# AJAX實現搜索自動補全功能

發布時間:2024-09-09 13:59:55 來源:億速云 閱讀:89 作者:小樊 欄目:編程語言

要在C#中使用AJAX實現搜索自動補全功能,你需要創建一個Web方法來處理搜索請求并返回建議列表。以下是一個簡單的示例:

  1. 首先,在你的ASP.NET項目中創建一個新的Web Forms頁面(例如:SearchAutoComplete.aspx)。

  2. 在SearchAutoComplete.aspx頁面中添加以下HTML代碼:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
   <title>Search Auto Complete</title>
   <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
   <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
    <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" />
</head>
<body>
    <form id="form1" runat="server">
        <div>
           <label for="txtSearch">Search:</label>
           <input type="text" id="txtSearch" />
        </div>
    </form>
   <script>
        $(document).ready(function () {
            $("#txtSearch").autocomplete({
                source: function (request, response) {
                    $.ajax({
                        url: "SearchAutoComplete.aspx/GetSearchSuggestions",
                        data: JSON.stringify({ searchTerm: request.term }),
                        dataType: "json",
                        type: "POST",
                        contentType: "application/json; charset=utf-8",
                        success: function (data) {
                            response($.map(data.d, function (item) {
                                return {
                                    label: item,
                                    value: item
                                };
                            }));
                        },
                        error: function (XMLHttpRequest, textStatus, errorThrown) {
                            alert("Error: " + textStatus + ": " + errorThrown);
                        }
                    });
                },
                minLength: 2
            });
        });
    </script>
</body>
</html>
  1. 在SearchAutoComplete.aspx.cs文件中添加以下C#代碼:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class SearchAutoComplete : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
    }

    [WebMethod]
    public static List<string> GetSearchSuggestions(string searchTerm)
    {
        // 這里可以從數據庫或其他數據源獲取搜索建議
        List<string> suggestions = new List<string>
        {
            "Apple",
            "Banana",
            "Cherry",
            "Date",
            "Elderberry",
            "Fig",
            "Grape",
            "Honeydew",
            "Ice cream",
            "Jackfruit",
            "Kiwi",
            "Lemon",
            "Mango",
            "Nectarine",
            "Orange",
            "Peach",
            "Raspberry",
            "Strawberry",
            "Tomato",
            "Ugli fruit",
            "Victoria plum",
            "Watermelon",
            "Xigua melon",
            "Yellow watermelon",
            "Zucchini"
        };

        return suggestions.Where(s => s.ToLower().StartsWith(searchTerm.ToLower())).ToList();
    }
}

現在,當用戶在搜索框中輸入至少兩個字符時,將顯示與輸入內容匹配的搜索建議。請注意,這個示例使用了一個簡單的字符串列表作為搜索建議的數據源。在實際應用中,你可能需要從數據庫或其他數據源獲取搜索建議。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

福鼎市| 彩票| 盘山县| 江西省| 平乡县| 青海省| 台中市| 莱阳市| 镇远县| 普兰店市| 咸宁市| 宣武区| 泰兴市| 合川市| 平谷区| 扬州市| 闽侯县| 勃利县| 海阳市| 泗水县| 张家界市| 萨嘎县| 专栏| 杭锦后旗| 南平市| 建平县| 永平县| 忻城县| 乐安县| 房产| 耒阳市| 汾西县| 勐海县| 肥东县| 华池县| 临清市| 镇沅| 建湖县| 德昌县| 磐石市| 崇左市|