在下拉列表中填充了我的网络服务中的项目后,我需要选择一个默认值。如何检测下拉项的加载是否完成?
<select id="countriesList"
data-url="@Url.Action("GetAllCountries", "Countries", new { Area = "Panel" })"
data-bind="options: countries, optionsValue: 'ID', optionsText: 'Name', optionsCaption: 'Selecione um país', value: selectedCountry">
</select>
和 JS:
$.getJSON($('#countriesList').data('url'), function (data) {
self.countries(data);
});