您可以通过一个简单的for
循环来实现这一点:
var min = 12,
max = 100,
select = document.getElementById('selectElementId');
for (var i = min; i<=max; i++){
var opt = document.createElement('option');
opt.value = i;
opt.innerHTML = i;
select.appendChild(opt);
}
JS小提琴演示。
我和Sime Vidas 的答案的JS Perf比较,运行是因为我认为他的看起来比我的更容易理解/直观,我想知道这将如何转化为实现。根据 Chromium 14/Ubuntu 11.04 我的稍微快一些,但其他浏览器/平台可能会有不同的结果。
针对 OP 的评论进行了编辑:
[如何] [我] 将其应用于多个元素?
function populateSelect(target, min, max){
if (!target){
return false;
}
else {
var min = min || 0,
max = max || min + 100;
select = document.getElementById(target);
for (var i = min; i<=max; i++){
var opt = document.createElement('option');
opt.value = i;
opt.innerHTML = i;
select.appendChild(opt);
}
}
}
// calling the function with all three values:
populateSelect('selectElementId',12,100);
// calling the function with only the 'id' ('min' and 'max' are set to defaults):
populateSelect('anotherSelect');
// calling the function with the 'id' and the 'min' (the 'max' is set to default):
populateSelect('moreSelects', 50);
JS小提琴演示。
并且,最后(后相当的延迟...),延伸的原型的方法HTMLSelectElement
,以链的populate()
功能,作为一种方法,对DOM节点:
HTMLSelectElement.prototype.populate = function (opts) {
var settings = {};
settings.min = 0;
settings.max = settings.min + 100;
for (var userOpt in opts) {
if (opts.hasOwnProperty(userOpt)) {
settings[userOpt] = opts[userOpt];
}
}
for (var i = settings.min; i <= settings.max; i++) {
this.appendChild(new Option(i, i));
}
};
document.getElementById('selectElementId').populate({
'min': 12,
'max': 40
});
JS小提琴演示。
参考: