可多選的下拉列表框


在網友的使用時,出現一些問題,更新如下:

1>在.list加入    z-index:100000;
2>將wraper中的樣式position:relative刪除
3>$this.click(function (e) {
      $(".list").hide();//此句新添加的
      $list.toggle();
      e.stopPropagation();
  });加入$(".list").hide();

 

這次更新的東西,一會JS有用一會沒用,疼。。。

(UL樣式與博客園中的沖突,所以看起起怪怪的)

背景:同事在網上的找的下拉列表框出現位置不對的和加載慢的BUG,反正多選下拉列表框實現也很簡單,與其看那些結構混亂的代碼,不如自己重新實現一個。

先看效果:





 JS:

View Code
        (function ($) {
            $.fn.extend({
                MultDropList: function (options) {
                    var op = $.extend({ wraperClass: "wraper", width: "150px", height: "200px", data: "", selected: "" }, options);
                    return this.each(function () {
                        var $this = $(this); //指向TextBox
                        var $hf = $(this).next(); //指向隱藏控件存
                        var conSelector = "#" + $this.attr("id") + ",#" + $hf.attr("id");
                        var $wraper = $(conSelector).wrapAll("<div><div></div></div>").parent().parent().addClass(op.wraperClass);

                        var $list = $('<div class="list"></div>').appendTo($wraper);
                        $list.css({ "width": op.width, "height": op.height });
                        //控制彈出頁面的顯示與隱藏
                        $this.click(function (e) {
                            $(".list").hide();
                            $list.toggle();
                            e.stopPropagation();
                        });

                        $(document).click(function () {
                            $list.hide();
                        });

                        $list.filter("*").click(function (e) {
                            e.stopPropagation();
                        });
                        //加載默認數據
                        $list.append('<ul><li><input type="checkbox" class="selectAll" value="" /><span>全部</span></li></ul>');
                        var $ul = $list.find("ul");

                        //加載json數據
                        var listArr = op.data.split("|");
                        var jsonData;
                        for (var i = 0; i < listArr.length; i++) {
                            jsonData = eval("(" + listArr[i] + ")");
                            $ul.append('<li><input type="checkbox" value="' + jsonData.k + '" /><span>' + jsonData.v + '</span></li>');
                        }

                        //加載勾選項
                        var seledArr;
                        if (op.selected.length > 0) {
                            seledArr = selected.split(",");
                        }
                        else {
                            seledArr = $hf.val().split(",");
                        }

                        $.each(seledArr, function (index) {
                            $("li input[value='" + seledArr[index] + "']", $ul).attr("checked", "checked");

                            var vArr = new Array();
                            $("input[class!='selectAll']:checked", $ul).each(function (index) {
                                vArr[index] = $(this).next().text();
                            });
                            $this.val(vArr.join(","));
                        });
                        //全部選擇或全不選
                        $("li:first input", $ul).click(function () {
                            if ($(this).attr("checked")) {
                                $("li input", $ul).attr("checked", "checked");
                            }
                            else {
                                $("li input", $ul).removeAttr("checked");
                            }
                        });
                        //點擊其它復選框時,更新隱藏控件值,文本框的值
                        $("input", $ul).click(function () {
                            var kArr = new Array();
                            var vArr = new Array();
                            $("input[class!='selectAll']:checked", $ul).each(function (index) {
                                kArr[index] = $(this).val();
                                vArr[index] = $(this).next().text();
                            });
                            $hf.val(kArr.join(","));
                            $this.val(vArr.join(","));
                        });
                    });
                }
            });
        })(jQuery);
        $(document).ready(function () {
            $("#txtTest").MultDropList({ data: $("#hfddlList").val() });
        });
    </script>

CSS:

View Code
        .wraper
        {
            
        } .list { width: 200px; height: 200px; overflow: auto; position: absolute; border: 1px solid #617775; display: none; background: none repeat scroll 0 0 #F0F6E4; float: left; z-index: 1000000;
        } .list ul li { padding-left: 10px; padding-top: 2px; padding-bottom: 2px; border-top: 1px solid black;
        } ul { list-style:none outside none;
    }

HTML:

View Code
 <asp:HiddenField ID="hfddlList" runat="server" Value='{k:1,v:"南京"}|{k:2,v:"上海"}|{k:3,v:"揚州"}|{k:4,v:"蘇州"}|{k:5,v:"無錫"}|{k:6,v:"常州"}|{k:7,v:"鹽城"}|{k:8,v:"徐州"}|{k:9,v:"泰州"}|{k:10,v:"淮安"}' />

        <div class="testContainer">
            <br />
            <br />
            <br />
            <br />
            <div style="margin-left: 300px; height: 30px;">
                <asp:TextBox ID="txtTest" runat="server" Width="150px"></asp:TextBox>
                <asp:HiddenField ID="hfTest" runat="server" Value="3,5" />
            </div>
        </div>

 

 

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM