第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

作為從選擇菜單中選擇的一個(gè)選項(xiàng),填充數(shù)據(jù)到數(shù)據(jù)庫(kù)中的下一個(gè)選擇菜單。

作為從選擇菜單中選擇的一個(gè)選項(xiàng),填充數(shù)據(jù)到數(shù)據(jù)庫(kù)中的下一個(gè)選擇菜單。

PHP
互換的青春 2022-12-23 16:32:39
M 使用 ajax 來(lái)填充選擇標(biāo)簽下拉菜單。Selecting an option from one select tag will fetch data to the next select tag from database through ajax.. M able to get the result but when an option is selected for which no data is available in database i want to show some message in the select標(biāo)記為“未找到此選擇的數(shù)據(jù)”` $(文檔).ready(函數(shù)(){    $("#sel_block").change(function(){        var blockid = $(this).val();        $.ajax({            url: 'getZone.php',            type: 'post',            data: {block:blockid},            dataType: 'json',            success:function(response){                var len = response.length;                $("#sel_zone").empty();                for( var i = 0; i<len; i++){                    var id = response[i]['id'];                    var name = response[i]['name'];                    var temp="No Data Found";                    if(response.length)                    {                        $("#sel_zone").append("<option value='"+id+"'>"+name+"</option>");                    }                    else                    {                         $("#sel_zone").append('<option value="">' + emptyMessage + '</option>');                    }                }            }        });    });});`在此處輸入圖像描述 現(xiàn)在寫(xiě)入 它在沒(méi)有數(shù)據(jù)時(shí)顯示空白
查看完整描述

1 回答

?
有只小跳蛙

TA貢獻(xiàn)1824條經(jīng)驗(yàn) 獲得超8個(gè)贊

在循環(huán)響應(yīng)之前,您必須檢查它的長(zhǎng)度。沒(méi)有檢查這段代碼,但它應(yīng)該工作


var len = response.length;


$("#sel_zone").empty();

if(len == 0){

    $("#sel_zone").append('<option value="">No Data Found</option>');

} else{

    for( var i = 0; i<len; i++){

        var id = response[i]['id'];

        var name = response[i]['name'];

        $("#sel_zone").append("<option value='"+id+"'>"+name+"</option>");

    }

}


查看完整回答
反對(duì) 回復(fù) 2022-12-23
  • 1 回答
  • 0 關(guān)注
  • 113 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)