js 获取select对象

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 获取select对象相关的知识,希望对你有一定的参考价值。

<select name='FriendLink1' >

<option Value="bb" selected="selected">中华人民共和国教育部</option>

<option Value="a">a123</option>

</select>

window.onload = function()
问题:这块想获得select 对象 并且输出他默认被选中的索引

1、获取选中select的value和text,html代码如下:

<select id="mySelect">
<option value="1">one</option>
<option value="2">two</option>
<option value="3">three</option>
</select>

则可通过以下script代码s来获取选中的value和text

$("#mySelect").val(); //获取选中记录的value值
$("#mySelect option:selected").text(); //获取选中记录的text值

2、运用new Option("文本","值")方法添加选项option

var obj = document.getElementById("mySelect");
obj.add(new Option("4","4"));

3、删除所有选项option

var obj = document.getElementById("mySelect");
obj.options.length = 0;

4、删除选中选项option

var obj = document.getElementById("mySelect");
var index = obj.selectedIndex;
obj.options.remove(index);

5、修改选中选项option

var obj = document.getElementById("mySelect");
var index = obj.selectedIndex;
obj.options[index] = new Option("three",3); //更改对应的值
obj.options[index].selected = true; //保持选中状态

6、删除select

var obj = document.getElementById("mySelect");
obj.parentNode.removeChild(obj); //移除当前对象

7、select选择的响应事件

$("#mySelect").change(function()
//添加所需要执行的操作代码
)
参考技术A 你是要输出被选中的索引号,不是被选中的value?

给select加个id,id="mySelect"
var obj=document.getElementById('mySelect');
var index=obj.selectedIndex; //序号,取当前选中选项的序号
var val = obj.options[index].value; //被选中的value
参考技术B 很多种方法可以实现,以下几个方法我都仔细测试过了:

方法一:getElementsByName()
var m=document.getElementsByName("FriendLink1")[0].selectedIndex;
if(m!=null)alert(m)

方法二:getElementsByTagName()
var m=document.getElementsByTagName("SELECT")[0].selectedIndex;
if(m!=null)alert(m)

方法三:getElementById()
添加一个id:<select id="您的id"><option></option></select>代码如下:
var m=document.getElementById("您的id").selectedIndex;
if(m!=null)alert(m)

方法四:添加form:<form name="form1"><select name="FriendLink1">……</select></form>
var m=document.form1.FriendLink1.selectedIndex;
if(m!=null)alert(m)

方法五:添加id,使用document.all获取,只支持IE浏览器

还有其他方法,例如用jQuery的选择器……本回答被提问者采纳
参考技术C alert(document.getElementsByName('FriendLink1')[0].selectedIndex);

以上是关于js 获取select对象的主要内容,如果未能解决你的问题,请参考以下文章

JS,jQuery获取select标签中选中值的方法

jQuery怎么获取Select的option个数

如何获取select下拉框的值

JS/JQuery获取元素

用js获取select的多个选项值

js获取select选择之前和选择之后的值