1、jquery获取当前选中select的text值 var checkText=$(“#slc1”).find(“option:selected”).text(); 2、jquery获取当前选中select的value值 var checkValue=$(“#slc1”).val(); 3、jquery获取当前选中select的索引值 var index=$(“#slc1 “).get(0).selectedIndex; 4、jquery设置索引值为1的项为当...
varcheckValue = $("#select_id").val();//获取Select选中匹配元素的当前值,即[即使多选也只]取得第一个匹配元素的val内容varcheckValue = $("select:eq(0) :selected").val();//===强烈建议用这个,以防多选//获取Select选中的索引值varcheckIndex = $("#select_id ").get(0).selectedIndex;//获取...
</select> <script type="text/javascript"> function showSelect(){ var obj = document.getElementById("user"); var index = obj.selectedIndex;//当前select选中项的索引 console.log(obj.options[index].value);//输出当前select选中项的value console.log(obj.options[index].text);//输出当前select选中...
<head> [removed][removed] [removed] $(function(){ //为Select添加事件,当选择其中一项时触发 $(select:eq(0)).change(function(){ //code }); //获取Select选中的Text:结果是由所有匹配元素包含的文本内容组合起来的文本 var checkText = $(select:eq点...
<script>$(function(){//为Select添加事件,当选择其中一项时触发$("select:eq(0)").change(function(){//code});//获取Select选中的Text:结果是由所有匹配元素包含的文本内容组合起来的文本varcheckText = $("select:eq(0) :selected").text();//建议用这个简单= $("select:eq(0) option:selected")....
= $("#One").find("option:selected").text();//如果多选,将返回一个数组,其包含所选的值。varcheckValue = $("#select_id").val();//获取Select选中匹配元素的当前值,即[即使多选也只]取得第一个匹配元素的val内容varcheckValue = $("select:eq(0) :selected").val();//===强烈建议用这个,...
= $("#One").find("option:selected").text();//如果多选,将返回一个数组,其包含所选的值。varcheckValue = $("#select_id").val();//获取Select选中匹配元素的当前值,即[即使多选也只]取得第一个匹配元素的val内容varcheckValue = $("select:eq(0) :selected").val();//===强烈建议用这个,...