HTML5 下拉控件绑定数据

<select id="CommunityList" class="form-control" >
          <option>請選擇社團</option>                                              
</select></td>
 $.ajax({
                url: '/Account/Personal_GetCommunityListByUserNeima',
                type: "GET",
                dataType: "JSON",
                data: { CountryCode: countryCode, Mobile: mobile },
                success: function (CommunityList) {
                
                    $("#CommunityList").html("");
                    $.each(CommunityList, function (i, Community) {
                        $("#CommunityList").append(
                            $('<option></option>').val(Community.CommunityID).html(Community.CommunityName));                       
                        if (i >= 1)
                        {
                            $("#Community").show();
                            $("#CommunityList").show("");
                        }
                    });
                }
            });

 

posted @ 2018-03-12 11:49  QQ273999072  阅读(207)  评论(0编辑  收藏  举报