九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
利用ajax,數(shù)據(jù)庫制作2級(jí)聯(lián)動(dòng)菜單
<script>
$(function(){
        $("#Property").live("change", function () {
            var sender = $(this);
            var select = sender.next();
            $.post("/FinanceAccount/GetCategoryByPropID", { "PropertyID": sender.val() }, function (json) {
                if (json.result == null)
                    return;
                select.empty();
                for (var i = 0; i < json.result.length; i++) {
                    select.append("<option value='" + json.result[i].ID + "'>" + json.result[i].Name + "</option>");
                }
            }, "json");
        });
})
</script> 
說明://利用ajax到后臺(tái)請(qǐng)求數(shù)據(jù),返回一個(gè)json對(duì)象,json.result 包含所需數(shù)據(jù)的列表   
<div class="item">
        <span class="item_left">性質(zhì):</span> <span class="item_right">
            <select id="Property" name="PropertyID">
                @foreach (var item in Model.PropertiesList)
                {
                    <option value="@item.ID">@item.Value</option>
                }
            </select>
            <select id="type" name="CategoryID">
                <option>請(qǐng)選擇</option>
            </select>
        </span>
    </div>
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
Ajax Json 級(jí)聯(lián)菜單實(shí)現(xiàn)代碼
jQuery取得select選擇的文本與值
jquery生成select option
成功el-form label設(shè)置line-height
php – 在Dropdown Selection上,如何從Database填充完整的表單字段
Jquery插件之可輸入的select 《EDITABLE SELECT》
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服