首页  >  文章  >  web前端  >  在选择元素中动态创建选项

在选择元素中动态创建选项

DDD
DDD原创
2024-10-20 22:35:30962浏览

Dynamically create option in select element

有两种动态创建选项的方法:

1) 使用 Option 构造函数和 add() 方法

2) 使用 DOM 方法

1) 使用 Option 构造函数和 add() 方法:

let newOption = new Option('Option Text','Option Value');
const select = document.querySelector('select'); 
select.add(newOption,undefined);

2) 使用 DOM 方法:

// create option using DOM
const newOption = document.createElement('option');
const optionText = document.createTextNode('Option Text');
// set option text
newOption.appendChild(optionText);
// and option value
newOption.setAttribute('value','Option Value');

const select = document.querySelector('select'); 
select.appendChild(newOption);

以上是在选择元素中动态创建选项的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn