jquery获取select标签的选中元素

Posted 名字不好起啊

tags:

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

select 标签配合 option 使用,是很好的下拉菜单,获取选中的选项值,可以用 jquery 的 api 简单直接的获取:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
    </head>
    <body>
        <select id=‘selection‘ onclick="clickClick()">
            <option>1</option>
            <option>2</option>
            <option>3</option>
            <option>4</option>
            <option>5</option>
        </select>
        <script src=‘jquery-1.11.3.js‘></script>
        <script>
            function clickClick(){
                console.log($(#selection).find(option:selected).text());
            }
        </script>
    </body>
</html>

 

以上是关于jquery获取select标签的选中元素的主要内容,如果未能解决你的问题,请参考以下文章

如何取HTML中的select中的值

jquery获取元素值的方法(常见的表单元素)

js如何获取下拉框选中项的文本?

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

如何用JQuery向select标签中添加option

怎样用JQuery来获取select选中的value