用javascript實現下拉式清單的自動篩選功能

來源:互聯網
上載者:User
下拉式清單大家都用的多了,如果下拉式清單裡面有太多項,使用者在尋找其中的一項就比較困難。這種時候大家都會想到排序,但有時候關鍵字不總是排在第一位,排序後還是有些難找。對下拉式清單項目進行簡單篩選就變得特別有效。function SelectFilter(sel)
{
    var txt = window.prompt("請輸入過濾條件:", "");
    if(document.filter == undefined)
    {
        document.filter = new Array();
    }
    if(document.filter[sel.id] == undefined)
    {
        document.filter[sel.id] = new Array();
        for(var i = 0; i < sel.options.length; i++)
        {
            document.filter[sel.id][i] = sel.options[i];
        }
    }
    else
    {
        for(var i = sel.options.length - 1; i >= 0; i--)
        {
            sel.options.remove(i);
        }
        for(var i = 0; i < document.filter[sel.id].length; i++)
        {
            sel.options.add(document.filter[sel.id][i]);
        }
    }
    if(txt == undefined || txt == "")
    {
        return;
    }
    for(var i = sel.options.length - 1; i >= 0; i--)
    {
        if(sel.options[i].text.indexOf(txt) < 0)
        {
            sel.options.remove(i);
        }
    }
    if(sel.options.length > 0)
    {
        sel.options[0].selected = true;
    }
}

在使用的時候,向如下調用:1 <input type="button" value="" onclick="javascript:SelectFilter(<%= ddlInterval.ClientID %>);">

看看效果,應用之前:

進行篩選,輸入2422:

篩選出來的結果:

之前發的指令碼還有些小問題,如果使用者點“取消”按鈕,會將下拉項全部清空,也不會預設選擇第一項。這些都已經修正。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.