码迷,mamicode.com
首页 > Web开发 > 详细

HTML5 下拉控件绑定数据

时间:2018-03-12 13:31:06      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:country   success   ima   .sh   name   绑定   blog   control   pos   

<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("");
                        }
                    });
                }
            });

 

HTML5 下拉控件绑定数据

标签:country   success   ima   .sh   name   绑定   blog   control   pos   

原文地址:https://www.cnblogs.com/chuangjie1988/p/8548494.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!