现在已经坚持了一段时间了。任何帮助将不胜感激。
我正在为我的网站制作一个带有国家/地区选项的select元素。我有一个带有2对象数组国家/地区列表的javascript文件(我无法在html文件中指定选项,只能使用此js文件):
var country_list = [
{"country_code": "CA", "country_name": "Canada"},
{"country_code": "UK", "country_name": "United Kingdom"},
{"country_code": "AU", "country_name": "Australia"},
{"country_code": "NZ", "country_name": "New Zealand"} ];
然后这是我的html文件:
<form name="form1">
Country <select value="country_code" onclick="select_country()"></select>
</form>
国家/地区名称必须显示在下拉列表中,而选项的值将是2个字母的国家/地区代码。此外,默认情况下必须选择澳大利亚。
这是我到目前为止所做的事情:
function select_country(){
var select = document.form1.createElement("SELECT");
select.setAttribute("id","mySelect");
document.form1.body.appendChild(select);
var option = document.form1.createElement("option");
option.setAttribute("value", "Canada");
var text = document.createTextNode("CAN");
option.appendChild(text);
document.form1.getElementById("mySelect").appendChild(option);
}
答案 0 :(得分:1)
你可以使用vanilla js轻松完成这项工作:
var selectElem = document.createElement("select");
for (var i = 0; i < country_list.length; i++) {
var option = document.createElement("option");
option.text = country_list[i].country_name;
option.value = country_list[i].country_code;
if (option.text == "Australia") option.selected = true; //default option
selectElem.appendChild(option);
}
document.form1.body.appendChild(selectElem);
答案 1 :(得分:0)
for (i=0; i <=country_list.length; i++){
var select = document.form1.createElement("SELECT");
select.setAttribute("id","mySelect"+i);
document.form1.body.appendChild(select);
var option = document.form1.createElement("option");
option.setAttribute("value", country_list[i].country_name);
var text = document.createTextNode(country_list[i].country_code);
option.appendChild(text);
document.form1.getElementById("mySelect"+i).appendChild(option);
}
答案 2 :(得分:0)
如果您想使用jQuery来执行此操作:
var country_list = [{
"country_code": "CA",
"country_name": "Canada"
}, {
"country_code": "UK",
"country_name": "United Kingdom"
}, {
"country_code": "AU",
"country_name": "Australia"
}, {
"country_code": "NZ",
"country_name": "New Zealand"
}]
.forEach(function(e){
$("<option value='"+ e.country_code+"'>"+e.country_name+"</option>")
.appendTo("select");
});