js控制下拉列表的选项内容的问题
发布网友
发布时间:2022-04-07 04:46
我来回答
共1个回答
热心网友
时间:2022-04-07 06:16
function change() {
var select = document.getElementById("Select1");
select.options.length = 0;
select.options.add(new Option("请选择", ""));
select.options.add(new Option("工作3", "3"));
select.options.add(new Option("工作4", "4"));
}