登录
首页 >  文章 >  前端

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

来源:dev.to

时间:2024-11-02 13:51:51 489浏览 收藏

来到golang学习网的大家,相信都是编程学习爱好者,希望在这里学习文章相关编程知识。下面本篇文章就来带大家聊聊《在选择元素中动态创建选项》,介绍一下,希望对大家的知识积累有所帮助,助力实战开发!

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

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

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);

本篇关于《在选择元素中动态创建选项》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于文章的相关知识,请关注golang学习网公众号!

声明:本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>