根據參數顯示類別(三級聯動,需要JSON資料)

來源:互聯網
上載者:User

標籤:style   blog   http   color   java   os   io   資料   

Scripts/Category.js

調用方法:

$(function () {    BindCategory();    //預設綁定文字框中的值    BindCategoryData($("#txtCategoryId").val());})
View Code

綁定三級聯動(詳情見:http://www.cnblogs.com/haozhenjie819/p/3887279.html)

function BindCategory() {    var $txtCategory = $("#txtCategoryId");    var _selectId = ["selBigClass", "selSmallClass", "selThreeClass"];    for (var i = 0; i < _selectId.length; i++) {        var select = document.createElement("select");        select.id = _selectId[i];        select.name = _selectId[i];        $txtCategory.parent().append(select);    }    var $selBigClass = $("#selBigClass");    var $selSmallClass = $("#selSmallClass");    var $selThreeClass = $("#selThreeClass");    $selSmallClass.hide();    $selThreeClass.hide();    $.getJSON("/Scripts/CategoryJson.js", function (json) {        var html = [‘<option value="">請選擇大類</option>‘];        for (var key in json) {            if (json[key].pid == 0) {                html.push(‘<option value="‘ + json[key].id + ‘">‘ + json[key].name + ‘</option>‘);            }        }        //第一級類別        $selBigClass.empty().append(html.join(‘‘)).change(function () {            $txtCategory.val(this.value);            $selThreeClass.hide();            $selSmallClass.show();            var html = [‘<option value="">請選擇小類</option>‘];            for (var data in json) {                if (json[data].pid == $("#selBigClass").val()) {                    html.push(‘<option value="‘ + json[data].id + ‘">‘ + json[data].name + ‘</option>‘);                }            }            //第二級類別            $selSmallClass.empty().append(html.join(‘‘)).change(function () {                $txtCategory.val(this.value);                               $selThreeClass.show();                var html = [‘<option value="">請選擇小類</option>‘];                for (var data in json) {                    if (json[data].pid == $selSmallClass.val()) {                        html.push(‘<option value="‘ + json[data].id + ‘">‘ + json[data].name + ‘</option>‘);                    }                }                //第三級類別                $selThreeClass.empty().append(html.join(‘‘)).change(function () {                    $txtCategory.val(this.value);                });                //如果不存在第三級類別則隱藏第三級類別控制項                if ($selThreeClass.get(0).options.length <= 1) {                    $selThreeClass.hide();                    return false;                }            });            //如果不存在第二級類別則隱藏第二級類別控制項            if ($selSmallClass.get(0).options.length <= 1) {                $selSmallClass.hide();                return false;            }                   });    });};
View Code

根據參數顯示預設值

var setBigClassTime;//綁定資料function BindCategoryData(CategoryId) {    if (document.getElementById("selBigClass") == null || document.getElementById("selBigClass").length <= 0)        setBigClassTime = setTimeout("BindCategoryData(‘" + CategoryId + "‘)", 200);    else        clearTimeout(setBigClassTime);    $.getJSON(‘/Scripts/CategoryJson.js‘, function (json) {        for (var key in json) {            if (json[key].id == CategoryId) {                json[key].id = CategoryId;                var str = json[key].itemvalue;                var _p = str.split("|")[2];                var _c = json[key].pid;                if (_p == _c) {                    if (_p != "") {                        $("#selBigClass").val(_p).change();                        $("#selSmallClass").val(CategoryId);                    }                    else {                        $("#selBigClass").val(CategoryId);                    }                }                else {                    $("#selBigClass").val(_p).change();                    $("#selSmallClass").val(_c).change();                    $("#selThreeClass").val(CategoryId).change();                }            }        }    });}

Scripts/CategoryJson.js(如何產生json資料詳見:http://www.cnblogs.com/haozhenjie819/p/3601676.html)

[{ "id": 31, "name": "\u65b0\u95fb\u4e2d\u5fc3", "pid": 0, "itemvalue": "|0|" },{ "id": 59, "name": "\u52a0\u76df\u5408\u4f5c", "pid": 0, "itemvalue": "|0|" },{ "id": 65, "name": "\u4ea7\u54c1\u670d\u52a1", "pid": 0, "itemvalue": "|0|" },{ "id": 60, "name": "\u52a0\u76df\u987b\u77e5", "pid": 59, "itemvalue": "|0|59|" },{ "id": 61, "name": "\u52a0\u76df\u6d41\u7a0b", "pid": 59, "itemvalue": "|0|59|" },{ "id": 62, "name": "\u52a0\u76df\u533a\u57df", "pid": 59, "itemvalue": "|0|59|" },{ "id": 70, "name": "\u63a8\u8350\u670d\u52a1", "pid": 65, "itemvalue": "|0|65|" },{ "id": 71, "name": "\u8ba1\u8d39\u65b9\u5f0f", "pid": 65, "itemvalue": "|0|65|" },{ "id": 72, "name": "\u7528\u6237\u987b\u77e5", "pid": 65, "itemvalue": "|0|65|" },{ "id": 73, "name": "\u7981\u5bc4\u8303\u56f4", "pid": 65, "itemvalue": "|0|65|" },{ "id": 75, "name": "\u666e\u901a\u5feb\u9012", "pid": 70, "itemvalue": "|0|65|70|" },{ "id": 76, "name": "\u7279\u79cd\u5feb\u4ef6", "pid": 70, "itemvalue": "|0|65|70|" },{ "id": 77, "name": "\u9650\u65f6\u6d3e\u9001", "pid": 70, "itemvalue": "|0|65|70|" },{ "id": 78, "name": "\u4ee3\u6536\u8d37\u6b3e", "pid": 70, "itemvalue": "|0|65|70|" },{ "id": 79, "name": "\u4fdd\u4ef7\u670d\u52a1", "pid": 70, "itemvalue": "|0|65|70|" }, { "id": 80, "name": "\u4ee3\u7b7e\u56de\u5355", "pid": 70, "itemvalue": "|0|65|70|"}]
View Code

web頁面(給hidden賦值,類別編號為75)

<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server">    <title>三級聯動</title>    <script src="/Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>    <script src="/Scripts/Category.js" type="text/javascript"></script>  </head><body>    <form id="form1" runat="server">            <table>            <tr>                <td >新聞類別:</td>                <td > <input id="txtCategoryId" name="txtCategoryId" type="hidden" runat="server" value="75" /></td>            </tr>            </table>    </form>    </body></html>

 

 

 

 

 

 

 

涉及的知識點:【JavaScript split() 方法】傳回值是一個字串數組。

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.