博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Select的动态取值(Text,value),添加,删除。兼容IE,FireFox
阅读量:5944 次
发布时间:2019-06-19

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

<script language="javascript">
function addSel(o,o1,o2)
{
    o.options.add(new Option(o2.value,o1.value));
}
function delSel(o)
{
    o.options.remove(o.selectedIndex);
    o.selectIndex=0;
}
function getValue(o)
{
    alert("Text :"+o.options[o.selectedIndex].text+"\nValue:"+o.value);
}
</script>
<select id="sel">
<option value="1">11111</option>
<option value="2">22222</option>
</select>
value:<input id="addV" type="text">
text:<input id="addT" type="text">
<input type="button" value="添加" οnclick="addSel(document.getElementById('sel'),document.getElementById('addV'),document.getElementById('addT'))">
<input type="button" value="删除" οnclick="delSel(document.getElementById('sel'))">
<input type="button" value="取值" οnclick="getValue(document.getElementById('sel'))">

转载地址:http://bpwxx.baihongyu.com/

你可能感兴趣的文章
数值积分中的辛普森方法及其误差估计
查看>>
Web service (一) 原理和项目开发实战
查看>>
跑带宽度多少合适_跑步机选购跑带要多宽,你的身体早就告诉你了
查看>>
广平县北方计算机第一届PS设计大赛
查看>>
深入理解Java的接口和抽象类
查看>>
java与xml
查看>>
Javascript异步数据的同步处理方法
查看>>
iis6 zencart1.39 伪静态规则
查看>>
SQL Server代理(3/12):代理警报和操作员
查看>>
基于事件驱动的DDD领域驱动设计框架分享(附源代码)
查看>>
Linux备份ifcfg-eth0文件导致的网络故障问题
查看>>
2018年尾总结——稳中成长
查看>>
JFreeChart开发_用JFreeChart增强JSP报表的用户体验
查看>>
度量时间差
查看>>
通过jsp请求Servlet来操作HBASE
查看>>
crontab执行shell脚本日志中出现乱码
查看>>
Shell编程基础
查看>>
Shell之Sed常用用法
查看>>
3.1
查看>>
校验表单如何摆脱 if else ?
查看>>