要使用一个 JavaScript 函数填充多个 select 元素,可以按照以下步骤进行操作:
以下是一个示例代码:
function fillSelect(selectId, options) {
var select = document.getElementById(selectId);
for (var i = 0; i < options.length; i++) {
var option = document.createElement("option");
option.value = options[i].value;
option.text = options[i].text;
select.appendChild(option);
}
}
// 示例用法
var options = [
{ value: "1", text: "选项1" },
{ value: "2", text: "选项2" },
{ value: "3", text: "选项3" }
];
fillSelect("select1", options);
fillSelect("select2", options);
在上述示例中,fillSelect 函数接受一个 select 元素的 ID(例如 "select1")和一个选项数组作为参数。通过调用 fillSelect 函数,可以将选项数组填充到指定的 select 元素中。
请注意,这只是一个简单的示例,实际应用中可能需要根据具体需求进行适当的修改和扩展。
领取专属 10元无门槛券
手把手带您无忧上云