js 获取select对象
<selectname='FriendLink1'><optionValue="bb"selected="selected">中华人民共和国教育部</option><op...
<select name='FriendLink1' >
<option Value="bb" selected="selected">中华人民共和国教育部</option>
<option Value="a">a123</option>
</select>
window.onload = function() {
问题:这块想获得select 对象 并且输出他默认被选中的索引
} 展开
<option Value="bb" selected="selected">中华人民共和国教育部</option>
<option Value="a">a123</option>
</select>
window.onload = function() {
问题:这块想获得select 对象 并且输出他默认被选中的索引
} 展开
4个回答
2015-10-31 · 知道合伙人互联网行家
关注
展开全部
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(){
//添加所需要执行的操作代码
})
<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(){
//添加所需要执行的操作代码
})
展开全部
你是要输出被选中的索引号,不是被选中的value?
给select加个id,id="mySelect"
var obj=document.getElementById('mySelect');
var index=obj.selectedIndex; //序号,取当前选中选项的序号
var val = obj.options[index].value; //被选中的value
给select加个id,id="mySelect"
var obj=document.getElementById('mySelect');
var index=obj.selectedIndex; //序号,取当前选中选项的序号
var val = obj.options[index].value; //被选中的value
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
很多种方法可以实现,以下几个方法我都仔细测试过了:
方法一: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的选择器……
方法一: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的选择器……
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
alert(document.getElementsByName('FriendLink1')[0].selectedIndex);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询