欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

javascript获取select标签选中的值讲解

程序员文章站 2022-07-03 20:18:24
1.javascript中获得选中的select值 var obj = document.getElementById(“select”); //获取se...

1.javascript中获得选中的select值

var obj = document.getElementById(“select”); //获取select元素

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

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

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

2.jQuery中获得选中的select值

第一种方式:

(“selectoption:selected”).text();//选中的文本(“select option:selected”).val(); //选中的值

(“select”).get(0).selectedIndex;//索引第二种方式:(“select”).find(“option:selected”)text(); //选中的文本

……………….val();

……………….get(0).selectedIndex;