我正在使用Crossrider编写扩展程序。我正在显示一个包含组合框的HTML表单,并且我正在尝试为其添加选择选项。 (外部交叉驾驶员代码正在运作。)
for (var i=0;i<country_list.length;i++)
{
country_txt = '<option value='+i+'>'+country_list[i]+'</option>';
console.log(country_txt);
$('#countrySelect').append(country_txt);
}
代码在控制台上正确显示,但附加功能不起作用。错误控制台中没有错误。