码迷,mamicode.com
首页 > Web开发 > 详细

js获取select标签选中的值

时间:2014-11-14 19:29:54      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   sp   div   on   log   

var obj = document.getElementByIdx_x(”testSelect”); //定位id

var index = obj.selectedIndex; // 选中索引

var text = obj.options[index].text; // 选中文本

var value = obj.options[index].value; // 选中值



jQuery中获得选中select值

第一种方式
$(#testSelect option:selected).text();//选中的文本

$(#testSelect option:selected) .val();//选中的值

$("#testSelect ").get(0).selectedIndex;//索引

 

第二种方式
$("#tesetSelect").find("option:selected").text();//选中的文本
…….val();
…….get(0).selectedIndex;


   //获取选中的selecet的信息
            var selecttext = $(#sourceSelect option:selected).text();
            var selecttval = $("#sourceSelect option:selected").val();
            var selecttid = $("#sourceSelect option:selected").id;
            var seltext = $("#sourceSelect").find("option:selected").text();
            var selval = $("#sourceSelect").find("option:selected").val();

 

js获取select标签选中的值

标签:style   blog   io   color   ar   sp   div   on   log   

原文地址:http://www.cnblogs.com/zhanghongqiang/p/4097784.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!