我确定这是基本的,但有谁知道为什么我的下拉列表没有填充?
jQuery文件:
$(document).ready (function() {
$.getJSON("mars-get-countries.php", success = function (data)
{
var options = "";
for (var i = 0; i <data.length; i++)
{
options += "<option value='" + data[i].toLowerCase() + "'>" + data[i] + "</option>";
}
$("#selectcountry").append(options);
});
});
HTML表单:
<div class="form-group">
<label class="col-md-4 control-label" for="selectcountry">Country of Residence</label>
<div class="col-md-4">
<select id="selectcountry">
</select>
</div>
</div>
我认为没有理由不起作用!!
运行时,mars-get-countries.php
文件正常工作返回国家。