博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
javascript 向下拉列表框select添加选项option
阅读量:5324 次
发布时间:2019-06-14

本文共 432 字,大约阅读时间需要 1 分钟。

1 var select= document.getElementById("selectid");2 var objOption = document.createElement("OPTION");3 objOption.value = value;4 objOption.text =text;5 select.add(objOption);

 获取select选中值

var index=document.getElementById("selectid").selectedIndex;var text=document.getElementById("selectid").options[index].text;var val=document.getElementById("selectid").options[index].value;

 

转载于:https://www.cnblogs.com/maokun-blog/p/7339498.html

你可能感兴趣的文章
atomsphere scattering
查看>>
数组和矩阵(3)——Next Greater Element I
查看>>
VS2019/VS2017安装源离线下载,更新,清理,企业版与论坛版重复下载
查看>>
多态的弊端
查看>>
Linux 文件基本属性: chown修改所属组 和 chmod修改文件属性命令
查看>>
python socket
查看>>
USACO Breed Proximity
查看>>
css装饰文本框input
查看>>
HBase RegionServer宕机处理恢复
查看>>
377. Combination Sum IV
查看>>
一款jq的计时器
查看>>
求1+2+…+n
查看>>
开发者必备的6款源码搜索引擎
查看>>
一个值只有0和1的字段,到底要不要建索引?
查看>>
JavaScript的Math对象
查看>>
form 禁止跳转
查看>>
第七周学习总结
查看>>
20145122《JAVA开发环境的熟悉》实验报告
查看>>
186. Reverse Words in a String II
查看>>
JAVA-初步认识-第五章-数组-常见操作-进制转换整合
查看>>