首页 > web前端 > js教程 > 正文

详解select标签设置默认选中的方法

小云云
发布: 2018-03-03 09:12:08
原创
2212 人浏览过

本文主要为大家分享一篇select标签设置默认选中的选项方法,具有很好的参考价值,希望能帮助到大家。

方法有两种。

第一种 通过标签选中项文本的js代码为:

var val = document.all.Item.options[document.all.Item.selectedIndex].text
var i=document.getElementById( 'sel' ).options[document.getElementById( 'sel' ).selectedIndex].value;
登录后复制

一些其它操作