为了账号安全,请及时绑定邮箱和手机立即绑定

Javascript - 使用预设的选定选项创建下拉列表

Javascript - 使用预设的选定选项创建下拉列表

繁星coding 2021-11-04 17:52:18
我正在使用以下代码创建一个新的下拉列表。该名称由页面上的多个下拉菜单使用。  var cellSel = row.insertCell(1);  var sel1 = document.createElement('select');  sel1.name = 'list[]';  sel1.options[0] = new Option('1', '1');  sel1.options[1] = new Option('2', '2');  sel1.options[2] = new Option('3', '3');  sel1.options[3] = new Option('4', '4');  cellSel.appendChild(sel1);创建后,我希望将选项 3 设置为所选条目,我该怎么做?
查看完整描述

2 回答

?
慕田峪9158850

TA贡献1794条经验 获得超7个赞

var cellSel = row.insertCell(1);

var sel1 = document.createElement('select');

sel1.name = 'list[]';

sel1.options[0] = new Option('1', '1');

sel1.options[1] = new Option('2', '2');

sel1.options[2] = new Option('3', '3', true);

sel1.options[3] = new Option('4', '4');

cellSel.appendChild(sel1);


查看完整回答
反对 回复 2021-11-04
?
倚天杖

TA贡献1828条经验 获得超3个赞

sel1.options[3].selected = true


查看完整回答
反对 回复 2021-11-04
  • 2 回答
  • 0 关注
  • 156 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信