createSelect();addOption();//removeAll();//removeOne();//动态创建selectf"> createSelect();addOption();//removeAll();//removeOne();//动态创建selectf" />
js对select动态添加和删除OPTION.doc

js对select动态添加和删除OPTION.doc

ID:53879017

大小:14.50 KB

页数:2页

时间:2020-04-10

js对select动态添加和删除OPTION.doc_第1页
js对select动态添加和删除OPTION.doc_第2页
资源描述:

《js对select动态添加和删除OPTION.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、js对select动态添加和删除OPTIONcreateSelect();addOption();//removeAll();//removeOne();//动态创建selectfunctioncreateSelect(){varmySelect=document.createElement("select");mySelect.id="mySelect";document.body.appendChild(mySelect);}//添加选项optionfuncti

2、onaddOption(){//根据id查找对象,varobj=document.getElementById('mySelect');//添加一个选项//obj.add(newOption("文本","值"));//这个只能在IE中有效obj.options.add(newOption("text","0"));//这个兼容IE与firefoxobj.options.add(newOption('javascript','1'));obj.options.add(newOption('css','2'));obj.opti

3、ons.add(newOption('jquery','3'));obj.options.add(newOption('html','4'));}//删除所有选项optionfunctionremoveAll(){varobj=document.getElementById('mySelect');obj.options.length=0;}//删除一个选项optionfunctionremoveOne(){varobj=document.getElementById('mySelect');//index,要删除选项的序号

4、,这里取当前选中选项的序号varindex=obj.selectedIndex;obj.options.remove(index);}//获得选项option的值functiongetOptionVal(){varobj=document.getElementById('mySelect');varindex=obj.selectedIndex;//序号,取当前选中选项的序号varval=obj.options[index].value;}//获得选项option的文本functiongetOptionText(){varo

5、bj=document.getElementById('mySelect');varindex=obj.selectedIndex;//序号,取当前选中选项的序号varval=obj.options[index].text;}//修改选项optionfunctionupdateOption(){varobj=document.getElementById('mySelect');varindex=obj.selectedIndex;//序号,取当前选中选项的序号varval=obj.options[index]=newOpt

6、ion("新文本","1");}//删除selectfunctionremoveSelect(){varmySelect=document.getElementById("mySelect");mySelect.parentNode.removeChild(mySelect);}

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。