我有 html 下拉列表,其中有国家列表。现在我想将当前国家设置为列表的默认值。我找到了使用 Geolocation 获取国家/地区的 JavaScript 代码。
我的代码:
function getCountry(var name) {
if(name==geoip_country_name()) {
return "selected";
}
}
然后我需要设置selected
选项列表的属性。
我试过这个:
<option value="Sri Lanka" selected="getCountry('sri Lanka')">Sri Lanka</option>
但这是不正确的。
基本上我想使用 JavaScript 函数设置选定的属性值
我怎么做?