当我打开模型时,所选的默认选项不会保持选中状态

时间:2019-02-07 07:11:33

标签: javascript jquery html

当我打开模型时,所选的默认选项不会保持选中状态,而是显示空白值。

您可以在下面查看我的代码:

这是答复

var getres = jQuery.parseJSON(response);

profilecountry = document.getElementById('profile_country');
$(profilecountry).append('<option value="-">Select Country</option>');

for (var i = 0; i < getres.Response.length; i++) {
    profilecountry.options[profilecountry.options.length] = new Option(getres.Response[i].vcountry_name,getres.Response[i].pk_countryid);
}

这是HTML

<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 m-t-20 pad-0">
     <select name="country" id="profile_country" class="form-control">

      </select>
</div>

输出

Click here to see output

2 个答案:

答案 0 :(得分:0)

具有如下所示的默认值,

'<option selected="selected" value="-">Select Country</option>'

这将显示下拉列表中的“选择国家/地区”作为默认选择选项。

答案 1 :(得分:0)

请尝试一下...

'<option value="">Select Country</option>'

您只需从值中删除“-”。